function animateCurtainUp() {
	jQuery("#winner-splash").animate({top:"-1022px"}, 970, 'easeInOutQuad'); 
	jQuery("#winner-splash-overlay").fadeOut();
}

function animateCurtainDown() {
	jQuery("#winner-splash").animate({top:"0px"}, 970, 'easeInOutQuad');  
    setTimeout("animateGuyUp()", 870); 
}

function animateGuyUp() {
	jQuery("#splash-guy").animate({top:"-38px"}, 600, 'easeInQuad');  
	jQuery("#splash-site-logo").animate({top:"76px"}, 600, 'easeInQuad');  
    setTimeout("animateBottomCurtainIn()", 580); 
}

function animateBottomCurtainIn() {
	jQuery("#splash-congrats").fadeIn(2200);
	jQuery("#splash-video").fadeIn(2200);
	jQuery("#splash-close").fadeIn(2200);
}

jQuery(document).ready(function($) {
/* 	setTimeout("animateCurtainDown()", 500) */
});

