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



