	$(document).ready(function() {
 	$('ul.sf-menu').superfish({
      delay:       800,                            
      animation:   {height:'show', opacity:'show'}, 
      speed:       'faster',                          
      autoArrows:  false,                   
      dropShadows: false                         
   });
	$('.sf-menu > li').not('.active').hover(function(){$(this).stop().animate({top:-21},300)},
									function(){$(this).not('.sfHover').stop().animate({top:0},300)})
 });
