$(document).ready(function() {
		var t=setTimeout("showIntro()",2000);
	});

function showIntro(){
		$('#loading').hide();
		$('#arrowleft').show();
		var t=setTimeout("showMenu()",2000);
	}
		
function showMenu(){
			$('#arrowleft').show();
			$('#arrowleft').hide();
			$('#arrowright').show();
 			$('#arrow').animate({left:0}, "slow");
			$('#arrow').css({'cursor' : 'auto'});
			$('#logo').animate({left: 560}, "slow");
			$('#menu').animate({ opacity: "show" }, "slow");	
			var t=setTimeout("showOther()",2000);
	}
	
function showOther() {
		$('#decorative_text').animate({ opacity: "show" }, "slow");
		$('#quicknews').animate({ opacity: "show" }, "slow");
		$('#language').animate({ opacity: "show" }, "slow");
		$('#searchbar').animate({ opacity: "show" }, "slow");
		$('#searchfield').animate({ opacity: "show" }, "slow");
		$('#footer').animate({ opacity: "show" }, "slow");
	}