// JavaScript Document
$(document).ready(function(){
	
	$(this).delay(1200,function(){
		$("#logo").stop().fadeIn(1000).animate({top:'100px'}, {queue:false, duration:1500, easing: 'easeInOutBack'});
	});
	
	$(this).delay(2000,function(){
		$("#accroche_accueil").stop().fadeIn(1000).animate({top:'130px'}, {queue:false, duration:1500, easing: 'easeInOutBack'});
	});
	
	$(this).delay(3000,function(){
		
		//$("#boutons").fadeIn(1000);
		//Show the elements	
		$("#boutons").stop().fadeIn(1000).animate({top:'180px'}, {queue:false, duration:1500, easing: 'easeInOutBack'});
		$buildingup = true;	
		
    });
	
});