// JavaScript Document

function preloadSplash(file) {
//	var file = 'splash_' + page + '.jpg';
//	$(".splash_container").css("height", "300px");
	$.preload([ file ], {
		base:"",
		ext:"",
		onFinish:showSplash
	});

}
	function showSplash(){
//		$(".splash_container").css('display', 'block');
	$(".splash_container").fadeIn("slow");
/*		$(".splash_container").animate(
									   {
										   width	: "1000px",
										   easing	: "swing",
//										   duration	: "4000"
									   }, 1500);*/
//		alert('f');
	}