$(function(){
	
	$('#Banner1').load(function() {
		$('#Banner2').load(function() {
			$('#Banner3').load(startAnimation(1));
		});
	});	
});

function startAnimation(numb) {	
	$('#Img').css({'top':'-225px'});
	$('#Banner'+ numb +'').fadeIn("slow");
	$('#Pessoas'+ numb +'').show(function() {
		$('#Img').animate({'top':'0px'}, 8000, function() {
			$('#Pessoas'+ numb +'').hide();
			$('#Banner'+ numb +'').fadeOut("slow", function() {
				changePhoto(numb);
			});
		});		
	});
}

function changePhoto(numb) {
	if(numb==3) { 
		numb=1;
	}
	else if(numb==2) {
		numb=3;
	}
	else {
		numb=2;
	}
	startAnimation(numb);
}



