$(document).ready(function() { 
	$('ul.menu').superfish({ 
		delay:       600,                            // one second delay on mouseout 
		animation:   {opacity:'show',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 
	});
	/*************** tooltips  ****************/
	 $(".list-services a.tooltips").easyTooltip();
	 $(".list-services2 a.tooltips").easyTooltip(); 
	
	/*************** style-img-hover  ****************/
	
	 $('.style-img-hover').hover(function(){
	   $(this).stop(true,false).animate({backgroundColor:"#1196D3"}, {duration: 400});
	  },function(){
	   $(this).stop(true,false).animate({backgroundColor:"#fff"}, {duration: 400});
	 });
	
	/*************** list-2 ****************/
	
	 $('.list-2 li a').hover(function(){
	   $(this).stop(true,false).animate({paddingLeft:"15px"}, {duration: 250});
	  },function(){
	   $(this).stop(true,false).animate({paddingLeft:"9px"}, {duration: 250});
	 });
	 
	 /*************** list-2 ****************/
	
	 $('.list-header li a').hover(function(){
	   $(this).stop(true,false).animate({fontSize:"14px"}, {duration: 200});
	  },function(){
	   $(this).stop(true,false).animate({fontSize:"12px"}, {duration: 200});
	 });
	
}); 
