$(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 span span').css({textIndent:0});
	 $('.menu li li').hover(function(){
	   $(this).find('> a > span > span').stop().animate({textIndent:'15px'}, {duration: 300});
	  },function(){
	   $(this).not('.sfHover').find('a span span').stop().animate({textIndent:'0px'}, {duration: 300});
	 }); 
	 
	
}); 
