$(document).ready(function() {

	// hide non-JS logo and text
	$('#logoBig').hide();
	$('#textBlock').hide();

	// SPLAT! nested delays/callbacks
	$('#splat1').delay(600).show(50, function() {
	    $('#splat2').delay(600).show(60, function() {      
	        $('#splat3').delay(600).show(60, function() {      
				$('#splatText').delay(700).fadeIn(300); 
				$('#textBlock').delay(700).fadeIn(300);
			});
	    });
	});

});



