$(function(){
		   $('.hoe').animate({
					"opacity": 1				    
				});
		   $('.hoe').hover(function(){
					$(this).stop().animate({"opacity": .80},250);    
				}, function(){
					$(this).stop().animate({"opacity": 1},250);
				});
});

$(function(){
		   $('.hoe2').animate({
					"opacity": 1				    
				});
		   $('.hoe2').hover(function(){
					$(this).stop().animate({"opacity": .50},250);    
				}, function(){
					$(this).stop().animate({"opacity": 1},250);
				});
});
