
$(document).ready(function(){
2.
$(".latest_img").fadeTo("slow", 0.3);
3.
$(".latest_img").hover(function(){
4.
$(this).fadeTo("slow", 1.0);
5.
},function(){
6.
$(this).fadeTo("slow", 0.3);
7.
});
8.
});