$(document).ready(function(){
	$("#splash").css("height",$(document).height());
	$("#splash,.splash-close").click(function(){
		 setTimeout(function(){ $('.splashCenter').slideUp('slow'); }, 200);
		 setTimeout(function(){ $("#splash").detach(); }, 900);
		return false;
	});
	
	var bgIndex;
	$("#menu ul li").hover(function(){
		bgIndex = $("#menu ul li").index($(this));
		$(this).children("a").children("div").fadeIn(250);
		$("h1.title").hide();
		$("#container").css({backgroundPosition: '0px ' + bgIndex * -560 + 'px'});
	},function(){
		$(this).children("a").children("div").fadeOut(250);
		$("#container").css({backgroundPosition: '0px 0px'});
		$("h1.title").show();
	});
});
