$(document).ready(function() { 
	$('ul.menu').superfish({ 
		delay:       800,                            // one second delay on mouseout 
		animation:   {opacity:'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 
	});

	$(".list-services a.tooltips").easyTooltip();
	
 	$('.pagination li a').hover(function(){
	   $(this).stop(true,false).animate({backgroundColor:"#9c9c9c"}, {duration: 250});
	  },function(){
	   $(this).stop(true,false).animate({backgroundColor:"#232323"}, {duration: 250});
	 });
	
	$('.button, #search-form .search-button, #search-form2 .search-button').hover(function(){
	   $(this).stop(true,false).animate({backgroundColor:"#929292"}, {duration: 350});
	  },function(){
	   $(this).stop(true,false).animate({backgroundColor:"#1f1f1f"}, {duration: 350});
	 });
	
	$('.list-1 li a').hover(function(){
	   $(this).stop(true,false).animate({color:"#000000"}, {duration: 250});
	  },function(){
	   $(this).stop(true,false).animate({color:"#919191"}, {duration: 250});
	 });
	
	$('.list-2 li a').hover(function(){
	   $(this).stop(true,false).animate({color:"#1F1F1F"}, {duration: 400});
	  },function(){
	   $(this).stop(true,false).animate({color:"#999898"}, {duration: 400});
	 });
	
	 $('.list-3 li a').hover(function(){
	   $(this).stop(true,false).animate({marginLeft:"4px"}, {duration: 300});
	  },function(){
	   $(this).stop(true,false).animate({marginLeft:"0"}, {duration: 300});
	 });

}); 
