$(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 
	});
	
	/*************** newsletter form  ****************/
	
	$('.mail-button').hover(function(){
	   $(this).stop(true,false).animate({backgroundPosition:"12px 9px"}, {duration: 150});
	  },function(){
	   $(this).stop(true,false).animate({backgroundPosition:"9px 9px"}, {duration: 150});
	 });
	
	/*************** list-1 ****************/
	
	$('.list-1 li a').hover(function(){
	   $(this).stop(true,false).animate({color:"#145892"}, {duration: 250});
	  },function(){
	   $(this).stop(true,false).animate({color:"#7B7B7B"}, {duration: 250});
	 });

}); 
