window.onload = function(){
	checkSplashPosition();	
}
window.onresize = function(){
	checkSplashPosition();
}
function checkSplashPosition(){
	if($("body").width() < $("#splash").width()){
		$("#splash").css("left", "0");
		$("#splash").css("margin-left", "0");
	}
	else{
		$("#splash").css("left", "50%");
		$("#splash").css("margin-left", -$("#splash").width()/2 + "px");
	}
	
	if($("body").height() < $("#splash").height()){
		$("#splash").css("top", "0");
		$("#splash").css("margin-top", "0");
	}
	else{
		$("#splash").css("top", "50%");
		$("#splash").css("margin-top", -$("#splash").height()/2 + "px");
	}
}
