// JavaScript Document
$(document).ready(function(){
	
	$buildingup = false;
	
	$("#sliders>*").show();
			
	
	//Blurs all links when clicked
	$("a").click(function(){
		$(this).blur();
	});
	
	$(this).delay(3000,function(){
		$("#titlebar").fadeOut(1000);
	});
	
	$(this).delay(3500,function(){
		
		//Show the elements	
		$("#cadre").stop().animate({top:'50px'}, {queue:false, duration:2000, easing: 'easeInOutBack'});
		$buildingup = true;	
		
    });
	
	$("a.toggle").click(function(){
		
		if ($buildingup == false){
			
			$("#titlebar").fadeOut(1000);
			$(this).delay(1000,function(){
				$("#cadre").stop().animate({top:'50px'}, {queue:false, duration:2000, easing: 'easeInOutBack'});
				$buildingup = true;
			});
		
		}else{
			
			$("#cadre").stop().animate({top:'100px'}, {queue:false, duration:2000, easing: 'easeInOutBack'});
			$buildingup = false;
			
			$(this).delay(2000,function(){
				$("#titlebar").fadeIn(1000);
			});
			
		}
		
	});
	
	 
});
