
function getOut() {
	$("#introwrapper").fadeOut();
}
function moveOut() {
	window.location = "/main/";
}

runOnLoad(function() {
	setTimeout("getOut();", 14000);
	setTimeout("moveOut();", 15000);
});
