(function($) {
	$(document).ready(function() {
		$(window).load(function(){
			setTimeout('startShow()', 1000);
		});
	});
})(jQuery);

function startShow() {
		setTimeout('controlFade()', 500);
}
function controlFade() {
	$('#controlText').hide();
	$('#logo').fadeIn('slow');
	$('#pathText').fadeIn('slow');
	setTimeout('enter()', 3000);
}
function enter() {
	window.location.replace("site/");
}



