$('html').addClass('js');

$(document).ready(function() {
  var path = location.pathname;
  path = path.replace(/index.html$/, '');
  $('a[href=' + path + ']').addClass('current-page');
  
  $('#subnav li:has(.current-page)').addClass('active');
  
  path = path.replace(/^(\/.*?\/).*/, '$1');
  $('#headernav a[href=' + path + ']').addClass('current-section');
  $('a[href^=http://]:not(a[href^=http://legacygr.com])').each(function(i,e){
      e.href="/leaving?destination="+e.href;
      e.target="";
  });
  $('a[href^=mailto]').each(function(i,e){
      e.href="/mailing?destination="+e.href;
  });
  $('a[href^=/leaving],a[href^=/mailing]').fancybox({type: 'iframe', width: 700, height: 450});
});

