function animation(){
	$('#sites').each(function(){
		$('#container').css('overflow','hidden');					  
		$('#usa', this).css('margin-top','2000px');
		$('#canada', this).css('margin-top','2500px');
		$('#international', this).css('margin-top','3500px');
		
		function step1(){ $('#canada').animate({marginTop: 0}, 2000, 'linear', step2() ); }
		function step2(){ $('#usa').animate({marginTop: 0}, 3000, 'linear', step3() ); }
		function step3(){ $('#international').animate({marginTop: 0}, 4000, 'linear'); }
		
		step1();
		
	});
};

$(document).ready(function(){	
	animation();
});