

function startAnim(){
	$('#centerLogo').animate( { "opacity":"1" }, { duration: 600, queue: true } );
setTimeout("anim2()","700");

	

}
function anim2(){
$('#topImg').animate( { "opacity":"1" }, { duration: 600, queue: true } );
$('#bottomImg').animate( { "opacity":"1" }, { duration: 600, queue: true } );
setTimeout("anim3()","700");
}

function anim3(){
	$('#centerLogo').animate( { "opacity":"0" }, { duration: 600, queue: true } );
	setTimeout("anim4()","700");
}

function anim4(){
	$('#centerLogo').css("visibility","hidden").css("height","0px");
	$('#menu').animate( { "opacity":"1" }, { duration: 600, queue: true } );
	$('#centerArrows').animate( { "opacity":"1" }, { duration: 600, queue: true } );
}

$(document).ready(function(){
$('#topImg').css("opacity","0");
$('#bottomImg').css("opacity","0");
});