
$(document).ready(function() {
		//Intro
		var video = $('.i_video')
		$('.menu_container').css({'top':-80});
		$('.footer').css({'bottom':-80});
		$(video).css({'opacity':0});
		
		window.setTimeout(menuShow, 1000, true);
		

		function menuShow(){
			
			 $('.menu_container').animate({
     			 'top' : 0
  			  },800);
			  window.setTimeout(footerShow, 500, true);
		}
		
		
		function footerShow(){
			
			 $('.footer').animate({
     			 'bottom' : 30
  			  },800);
			 window.setTimeout(firstStatement, 1000, true);
		}
		function firstStatement(){
			$(video).css({'background':'url(http://the-pod.com.au/images/thepod_title_screen.png) no-repeat center'});
			$(video).animate({
				'opacity':1
			},2000);
			
		}
	
});
