
$(document).ready(function() {

	$('#pause').animate({opacity: "hide"}, 500, startShow);

	function startShow(){
				$('#flashContent').animate({marginTop: '1000px',opacity: "hide"}, 10);

		$('#header').animate({opacity: "show"}, 2000);
		$('#reflection').animate({opacity: "show"}, 1000);
		$('#mainContent').animate({marginTop: '0px', opacity: "show"}, 1000, openMainNav);
	}
	
	function openMainNav(){
		  $("#mainNav").slideDown("medium", closeMainContentShowFlash);

	}
	
	function closeMainContentShowFlash(){
		
		var rand_no = Math.floor(2*Math.random())
		if(rand_no < 1){
			$('#mainContent').animate({opacity: "hide"}, 3000, openFlash);
		}else{
			
			// removing from home page as tech is still to new requires IE7 and above
			// $('#mainContent').animate({opacity: "hide"}, 3000, showTouch);
			$('#mainContent').animate({opacity: "hide"}, 3000, openFlash);
		}

	}


	function showTouch(){
		$('#iTouch').animate({opacity: "show"}, 2000, allDone);

	}
	
	
	function showLogo(){
		$('#header-logo').animate({opacity: "show"}, 5000);

	}
	
	
	function openFlash(){
		swfobject.embedSWF("/flash/logoAniFlyPixel/logoAniFlyPixelChaos.swf", "flashContent", "640", "480", "9.0.0");
		$('#flashContent').animate({marginTop: '0px', opacity: "show"}, 1000, allDone);

	}
		function allDone(){
					$('#header-reflection').animate({opacity: "hide"}, 2000, showLogo);

				$('#footer').animate({opacity: "show"}, 5000);
				


	}


});

