//JS code for Splash page - curtain animation
$(document).ready(function() {
		
	$(".leftcurtain").stop().animate({width:'60px'}, 2000 );
	$(".rightcurtain").stop().animate({width:'60px'},2000 );
			
	//standard enter button link (eg people without flash version)	
	$(".enter").click(function(){
		$(this).blur();
		$(".logo").stop().animate({top: '-100px', opacity: 0.2 }, {queue:false, duration:350, easing:'easeOutBounce'}); 
		$("#enterBtn").stop().animate({opacity:0}, 2000 );
		$(".leftcurtain").stop().animate({width:'50%'}, 2000 );
		$(".rightcurtain").stop().animate({width:'51%'}, 2000);
		setTimeout("home()", 2000);
	});
});
		
function home(){
	window.location="dee-riley.html";
}

