        $(document).ready(function(){
      
                $(".second a").hover(function() {
              		 
					  $(this).animate({color: "#2f9ca8"  }, 500);
					  
       			 },function() {
					  $(this).animate({ color: "#666666" }, 400);
					  
              		   
        });
          $(".work a").hover(function() {
              		 
					  $(this).animate({ color: "#2f9ca8", background: "#107884"  }, 500);
					  
       			 },function() {
					  $(this).animate({ color: "#666666", background: "#ffffff"}, 400);
					  
              		   
        });
 
  });
