var splash_0 = function() { $('#splash_1').fadeIn(2000); }
var splash_1 = function() {	
	$('BODY').css('backgroundColor', '#330000');	
	$('#splash_2').show();
	$('#splash_1').fadeOut(2000);
	//$('#splash_2').fadeIn(2000); 
}
var splash_2 = function() {
	$('#splash_2').fadeOut(2000);	
}
var splash_final = function () {
	$('#page').fadeIn(2000, function() {$(".splash").hide(); $('BODY').css('overflow', 'auto');	}); 
	$("#gallery UL.gallery LI.panel").hide();
	$("#gallery UL.gallery").show();
	$("#gallery_loading").fadeOut('slow');
	$("#gallery UL.gallery LI.panel").first().fadeIn(2000).addClass("active");
	
}

$(document).ready(function() {
	setTimeout(splash_0, 500);
	setTimeout(splash_1, 3500);
	setTimeout(splash_2, 6500);
	setTimeout(splash_final, 8500);

});
