// ---- Atribui um título para cada link ---- //
/*
$("#fotos>div").each(function(i){
	$(this).attr("class","a"+i);
});

j = 0;
function aparecer(){
	$('#fotos .a'+j).fadeIn("slow");
	j++;
	if (j == 35){
		clearInterval(t);
	}
}

$('#fotos div').mouseover(function(){
	$(this).children("p").animate({top:'109px'},250);
});

$('#fotos div').mouseleave(function(){
	$(this).children("p").animate({top:'145px'},250);
});

t = setInterval("aparecer()",150);

*/