$(function() 
{	
	$(".img_start").css("opacity","0.00");	
	$(".img_start").hover(function () 
	{		
		$(this).stop().animate({opacity: 1.0}, "slow");
	},			
	function () {	
	$(this).stop().animate({opacity: 0.0}, "slow");});
});
