  



      var leftNavParentItemHref = null;
      function setLeftNavParent(parentItemHref) {
      }
$(document).ready(function(){
    // bootsrtap tab control setup
    $('.nav-tabs a').click(function (e) {
      e.preventDefault();
      $(this).tab('show');
    });
    // Manage HISTORY (back button behavior) for tabs
    // add a hash to the URL when the user clicks on a tab
    // relies on https://github.com/devote/HTML5-History-API/ to support pushState()
    $('a[data-toggle="tab"]').on('click', function(e) {
      history.pushState(null, null, $(this).attr('href'));
    });
    // // navigate to a tab when the history changes
    showTabFromUrl = function(e) {
      if (location.hash.substr(0,3)=="#/#") {
        hashToUse = location.hash.substr(2);
      } else {
        hashToUse = location.hash;
      }
      var activeTab = $('[href="' + hashToUse + '"]');
      if (activeTab.length) {
        activeTab.tab('show');
      } else {
        $('.nav-tabs a:first').tab('show');
      }
    }
    // cross-browser call to bind showTab
    if (!window.addEventListener) {
      window.attachEvent("popstate", showTabFromUrl);
    } else {
      window.addEventListener("popstate", showTabFromUrl, false);
    }

    showTabFromUrl();

  });// doc ready

/**
 * @summary Transforms all clicks on mailto <A> links into email form popups. NOTE: this is Removed temporarily
 *
 * Long. Transforms all clicks on mailto <A> links into email form popups. Whenever there is a click on a <a> tag that begins with "mailto", run the main function. The function builds a URL to the view that will show the form for the user, opens Colorbox to the view with some options for Colorbox that run scripts after the form is submitted. The Colorbox options are onComplete and onLoad. The onLoad function removes the default Colorbox close button. The onComplete function sets up a click handler when the user submits the form. This handler runs the AJAX connection to the URL in the form's action attribute. The AJAX connection uses the form's data in a serialized format. The success attribute of the AJAX connection displays a message to the user, as does the error function. These messages display inside the Colorbox window. 
 *
 */
$(document).ready(function () {

$('h2.typeHighlight1').hide();

//$('#Column_1')[1].addClass('col cols3of12');
//$('#Column_2').prev().addClass('col cols5of12');


//$('.VerticalRelatedLinks')[0].parentElement.parentElement.previousSibling.className = 'col cols9of12';
//$('.VerticalRelatedLinks')[0].parentElement.parentElement.className = 'col cols3of12';

});$(document).ready(function(){
    // bootsrtap tab control setup
    $('.nav-tabs a').click(function (e) {
      e.preventDefault();
      $(this).tab('show');
    });
    // Manage HISTORY (back button behavior) for tabs
    // add a hash to the URL when the user clicks on a tab
    // relies on https://github.com/devote/HTML5-History-API/ to support pushState()
    $('a[data-toggle="tab"]').on('click', function(e) {
      history.pushState(null, null, $(this).attr('href'));
    });
    // // navigate to a tab when the history changes
    showTabFromUrl = function(e) {
      if (location.hash.substr(0,3)=="#/#") {
        hashToUse = location.hash.substr(2);
      } else {
        hashToUse = location.hash;
      }
      var activeTab = $('[href="' + hashToUse + '"]');
      if (activeTab.length) {
        activeTab.tab('show');
      } else {
        $('.nav-tabs a:first').tab('show');
      }
    }
    // cross-browser call to bind showTab
    if (!window.addEventListener) {
      window.attachEvent("popstate", showTabFromUrl);
    } else {
      window.addEventListener("popstate", showTabFromUrl, false);
    }

    showTabFromUrl();

  });// doc ready

 