$(document).ready(function(){

	$(".item").hover(function() {
		$(this).children(".featured-info").animate({opacity: "show"}, "slow");
	}, function() {
		$(this).children(".featured-info").animate({opacity: "hide"}, "fast");
	});
});