 $(document).ready(function(){  
	 $(".latest_img").fadeTo("slow", 0.3);  	 
	 $(".latest_img").hover(function(){  
	 $(".first_img").fadeTo("fast", 0.3); 
$(this).fadeTo("slow", 1.0);  
	 },function(){  	 
	 
	 $(this).fadeTo("slow", 0.3);  
});  

	 $(".first_img").hover(function()
	 {  	
		$(this).fadeTo("slow", 1.0);  
	 },function(){  	 	 
	 $(this).fadeTo("slow", 0.3);  
});  

 });  