$(document).ready(function() {
  
  $('a.backtotop').click(function(){
    $('html, body').animate({scrollTop:0}, 'slow');
    return false;
  });
  
  $('#expander a').click(function(){
    $('#tab').slideToggle(300);
  });
  
  $('#superheader, #header,  #feature, #subheader, #breadcrumb, #content, #footer').click(function(){
    $('#tab').slideUp(300);
  });
   
  
  $('#mainnav ul').hover(function(){
    $(this).parent().find('a').addClass('active');
  }, function(){  
    $(this).parent().find('a').removeClass('active');
  });
  
  
});

