
function switchdivs() {
	$('#loadingPage') .fadeOut('slow',function(){
		$('#galleryResults') .fadeIn('slow'); 
	});
	$('document') .ready(function() {
			alert("Page complete");
		});
}

