// JavaScript Document
<!--

// This function is used to dynamically load the main image

//

function loadImage() {

	var iNdx;

	var sVal;

	iNdx = Math.round(Math.random() * 23) + 1;

	sVal = "images/random/" + iNdx + ".jpg"

	document.write('<img src="' + sVal + '" name="mainImage" alt="please click refresh or reload on your browser to view more photos">');

}

//-->


