$(document).ready(function() {
	$(".foto").hover(
		function(){
			//$(this).parent().find(".description").fadeIn();
			$(this).parent().find(".description").show();
		}, 
		function(){
			//$(this).parent().find(".description").fadeOut();
			$(this).parent().find(".description").hide();
			
		}
	);
});
