function comvecinos(){
	
	$('#foto3').delay(1000).animate({"bottom": "0px"}, 1000, function() {
		$('.fotos').css("background", "none");
	   $('#foto2').animate({"bottom": "0px"}, 1000, function() {
			$('#foto1').animate({"bottom": "0px"}, 1000);
		});
	});
	
}

/* -------------------------------------------------------------------------------------------
LOAD -----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------- */ 
$(document).ready(comvecinos);
