$(document).ready(function(){

	$(window).load(function () {
		$("#load_foto").fadeOut(1000, 0.0);

		$("img.big_foto").css('visibility', 'visible')
			.animate(
				{
				opacity: 1,
				top: $(window).height() - $("img.big_foto").height() - $("img.big_foto").position().top
				}, 
				'slow');
	});
});
