$(document).ready(function(){
 
	$(".galeria a").hover(function() {
		$(this).next(".descricao").animate({opacity: "show", top: "10" }, "slow");
	}, function() {
		$(this).next(".descricao").animate({opacity: "hide", top: "-50"}, "fast");
	}); 
});



