$(document).ready(function () {
  // Expand Dropdown Nav
  $('nav.global .sub>a').click(function () {
     $(this).parent().toggleClass('open');
     return false;
  });
  
  // Return To Tap
  $('a.top').live('click', function () {
    $('html, body').animate({
      scrollTop : 0
    }, 500);
    return false;
  });
  
  // Lock Headers on Scroll
  if(typeof document.body.style.maxHeight !== 'undefined') { // Hide from dreaded ie 6
    $(window).bind('scroll', function () {
      var scrollTop = $(this).scrollTop(),
          $body = $('body'),
          topText = $('header.global cite').text(),
          padTop = 305;
      if (scrollTop >= padTop) {
        $body.addClass('lock');
        $('header.global cite').html('<a href="#" class="top">' + topText + '</a>');
        return false;
      } else {
        $body.removeClass('lock');
        $('header.global cite').html(topText);
        return false;
      }
    });
  }
  
});
