$(document).ready(function()
{
	setTimeout(firstFadeIn,2000);
	$("#bgcontainer").removeClass();
	$("#container").removeClass();
	$("#bgcontainer").addClass("jsEnabled");
	$("#container").addClass("jsEnabled");
	
});

function firstFadeIn()
{
	$("#bgcontainer").fadeTo(1000,.8);
	$("#container").fadeIn(1500).load("splash.html");
	setTimeout(firstFadeOut,4000);
}

function firstFadeOut()
{
	$("#container").fadeOut(1200).empty();
	$("#bgcontainer").fadeTo(1200,0);
	setTimeout(secondFadeIn,1200);
}

function secondFadeIn()
{
	$("#bgcontainer").fadeTo(1200,.8);
	$("#container").fadeIn(3500).load("homepg.html");
}
