function showImage(){
	var theImages = new Array();
	
	theImages[0] = 'splash1.jpg';
	theImages[1] = 'splash2.jpg';
	theImages[2] = 'splash3.jpg';
	theImages[3] = 'splash4.jpg';
	theImages[4] = 'splash5.jpg';

	var j = 0;
	var p = 56;
	
	var whichImage = Math.round(Math.random()*(p-1));
	whichImage++;
	//alert('<img src="images/splash'+whichImage+'.jpg">');
	document.write('<img src="images/splash'+whichImage+'.jpg" WIDTH="480" HEIGHT="120" BORDER="0">');
}
