$(function() {
	if(!get_cookie('visited')){
		$('#enter').show();
		$('#supersize, #main-menu, #content').remove();
		$('body').css('background','#000 url(/_images/splash-bg.png) no-repeat center bottom');
		center();
		$(window).bind('resize', center);
	}else{
		$('#enter').remove();
		$('#supersize, #content, #main-menu, #main-menu h2, #main-menu ul').hide();
		$('#supersize').fadeIn(1000);
		$('#main-menu').delay(1500).fadeIn(1000);
		$('#main-menu h2').delay(1500).fadeIn(1000);
		$('#main-menu ul').delay(2250).fadeIn(1000);
	} 
	
	$('#enter').click(function(){
		set_cookie('simply_visited',"1");
		window.location.reload();
	});
	
	function center(){
		var w = ($(window).width() / 2) - 224;
		var h = ($(window).height() - 185) / 2;
		$('#enter').css({
			marginTop: h,
			marginRight: w
		});
	}
});

$.preLoadCSSImages(function(){
     //alert('All CSS Images Loaded');
});
