/******************************************************************************************************************/
// On document load...
/******************************************************************************************************************/

$(function(){
	$('#bg, #payoff, #lang, #footer').css({ opacity: 0 });
	
	$('#bg').animate({ marginLeft: '0px', opacity: 1 }, 2000);
	$('#payoff').animate({ top: '390px', opacity: 1 }, 2000);
	$('#logo').animate({ marginLeft: '364px' }, 2000, function(){
		$('#lang, #footer').animate({ opacity: 1 }, 1500);
	});
});
