$(document).ready(function() { 
	$('ul.menu').superfish({ 
		delay:       600,                            // one second delay on mouseout 
		animation:   {height:'show'},  // fade-in and slide-down animation 
		speed:       'normal',                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	});
	 /* $('.menu li li a').hover(function(){
	   $(this).stop(true,false).animate({paddingLeft:"35px"}, {duration: 300});
	  },function(){
	   $(this).stop(true,false).animate({pddingLeft:"0"}, {duration: 300});
	 }); */
}); 
