	// ==============================================
	// Copyright 2003 by jsCode.com
	// Source: jsCode.com
	// Author: etLux
	// Free for all; but please leave in the header.
	// ==============================================

	var theImages = new Array() 

	theImages[0] = 'images/image1.jpg'
	theImages[1] = 'images/image2.jpg'
	theImages[2] = 'images/image3.jpg'
	theImages[3] = 'images/image4.jpg'
	theImages[4] = 'images/image5.jpg'
	theImages[5] = 'images/image6.jpg'
	theImages[6] = 'images/image7.jpg'
	theImages[7] = 'images/image8.jpg'
	theImages[8] = 'images/image9.jpg'
	theImages[9] = 'images/image10.jpg'
	theImages[10] = 'images/image11.jpg'
	theImages[11] = 'images/image12.jpg'

	var j = 0
	var p = theImages.length;

	var preBuffer = new Array()
	for (i = 0; i < p; i++){
   		preBuffer[i] = new Image()
   		preBuffer[i].src = theImages[i]
	}

	var whichImage = Math.round(Math.random()*(p-1));
	function showImage(){
	document.write('<img src="'+theImages[whichImage]+'">');
	}
