$(document).ready(function(){
$(".latest_img").fadeTo("slow", 0.3);
$(".latest_img").hover(function(){
$(this).fadeTo("slow", 2.0);
},function(){
$(this).fadeTo("slow", 0.1);
});
});
