<!--
			
			// Create arrays to contain all the values 
			// for image locations

			image = new Array

			image[1]="../img/a04.jpg"
			image[2]="../img/a04.jpg"
			image[3]="../img/a05.jpg"
			image[4]="../img/a05.jpg"
			image[5]="../img/a06.jpg"
			image[6]="../img/a06.jpg"


			// Create a random number between 1 and six
			random_num = (Math.round((Math.random()*5)+1))


			// Write the image tag with a random array element
			document.write("<img src=\"" + image[random_num] + "\">");

		

//-->
