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