$(document).ready(function(){
/*	var topo = new Array();
	var lado = new Array();
	var i = 0;
	$('#fotos div').each(function(){
		topo[i] = $(this).css('top');
		lado[i] = $(this).css('left');
		$(this).css({
			top:'50px',
			left:'1019px'
		})
		i++;
	})*/
	setTimeout(function(){
		$('#inicio').fadeOut(600,function(){
			i = 0;
			/*$('#fotos div').each(function(){
				$(this).animate({
					top:topo[i],
					left:lado[i]
				},700)
				i++;
			})*/
		})
	},2000)
})
