$(document).ready(function() {
	$("#content").hide();
	$("#contentHeader").hide();
	$("#scroller").hide();
	$("#welcome").hide();
	$("#welcome").load("intro.html");
	$("#welcome").fadeIn(3000);
	window.setTimeout("hideWelcome()", 6000);
});

function hideWelcome() {
	$("#welcome").fadeOut(2000);
	window.setTimeout("showContent()", 3000);
}

function showContent() {
	$("#content").fadeIn(2000);
	$("#contentHeader").fadeIn(2000);
	$("#scroller").fadeIn(2000);
}
