
JQ(document).ready(function(){  

JQ(".latest_img").fadeTo("slow", 0.4);  

JQ(".latest_img").hover(function(){  

JQ(this).fadeTo("slow", 2.0);  

},function(){  

JQ(this).fadeTo("slow", 0.4);  

});  

}); 

