<!--
	var theImages = new Array()

	theImages[0] = 'images/Img01.jpg'
	theImages[1] = 'images/Img02.jpg'
	theImages[2] = 'images/Img03.jpg'
	theImages[3] = 'images/Img04.jpg'
	theImages[4] = 'images/Img05.jpg'
	theImages[5] = 'images/Img06.jpg'
	theImages[6] = 'images/Img07.jpg'
	theImages[7] = 'images/Img08.jpg'
	theImages[8] = 'images/Img09.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 displayImage()
	{
		document.write('<IMG SRC="' + theImages[whichImage] + '">');
	}
// -->