
$(document).ready(function(){

	var randomImage = Math.floor(Math.random()*4);
	var splashImage = '<img src="/images/splash/0' + randomImage + '.jpg" width="900" height="200" id="image-' + randomImage + '">';

	$("#splash").append(splashImage);
	$("#splash p").stop().hide().fadeIn(500);
	$("#image-" + randomImage).stop().hide().fadeIn(2000);
	
});


