$(document).ready(function(){

	$(".latest_img").hover(function() {
		$(this).children(".latest_info").animate({opacity: "show"}, "slow");
	}, function() {
		$(this).children(".latest_info").animate({opacity: "hide"}, "fast");
	});

});
