$(document).ready(function() {
  $('.backto_ppfa li').click(function(){ // - Matt, 10/15/10
      $.cookie('alt_nav', null, {
        path: '/'
      });
  });
  //alter health topics navigation and set cookie to do the same on other pages for the session. -alan, 7/27/10
  if (cookieTest() == true) {
    if ($.cookie('alt_nav') == null) {
      $.cookie('alt_nav', 'health', {
        path: '/'
      });
    }
    $("a[href$='/health-topics/abortion-4260.asp']").text('Information about Abortion')
    $("a[href$='/health-topics/abortion-4260.asp']").attr('href', '/health-topics/information-about-abortion-33272.htm')
    
    //sort top nav alphabetically (excluding first link).
    alphaSortList('ul#nav_health_sub', 'li:not(:first)');
    alphaSortList('ul#affiliate_health_topics', ''); // - Matt, 10/15/10
  } else {
    //disable drop-down menu for users with cookies disabled.
    $('.main_nav > li').children('ul.nav_menu').addClass('nav_menu_hide');
  }
});
