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


