jQuery(document).ready(function() {
 	jQuery('#Navigation ul').superfish({
      delay:       800,                            
      animation:   {height:'show', opacity:'show'}, 
      speed:       'faster',                          
      autoArrows:  false,                   
      dropShadows: false                         
   });
        jQuery('#Navigation ul > li').not('.current').hover(function(){
            jQuery(this).stop().animate({top:-20},300)},
             function(){
                 jQuery(this).not('.current').stop().animate({top:0},300)
             })
 });
