$(document).ready(function(){
//	$('#start').hide();
//	$('#page_outer').show();
	$('#start').show();
	$('#page_outer').hide();
	setTimeout(function(){
					$('#start').fadeOut(1000);
				}, 3000);
	setTimeout(function(){
					$('#page_outer').fadeIn(1000);
				}, 4000);
})
