$(document).ready(function(){
	$j(".latest_img").fadeTo("slow", 0.8);
	$j(".latest_img").hover(function(){
	$j(this).fadeTo("slow", 1.5);
	},function(){
	$j(this).fadeTo("slow", 0.8);
});
});


