$(function(){
	
	//set body scroll off
	$('body').css('overflow', 'hidden');
	
	//loop videos in firefox
	$('video').bind('ended', function(){ 
		this.play();
	}); 
	
	//Animate promo up and turn off
	$('#continue').click(function() {
	  $('#promo-container').animate({
	  	top:'-100%',
	  	height:'toggle'
	  }, 1000, function() {
	    // Animation complete.
		//set body scroll on
		$('body').css('overflow', 'auto');
	  });
	  $('footer').animate({
	  	bottom:'-56px'
	  }, 500, function() {
		// Animation complete.
		$(this).css('position', 'relative');
		$(this).css('bottom', '0');
		//$(this).css('width', 'auto');
	  });
	});
	
});
