
/*--------------------------------

Original script by Tom Negrino and Dori Smith.
Script modified by Forrest Thomas.

-----------------------------------*/

//window.onload = choosePic;

function choosePic() {
	var myPix = new Array("http://www.forrestthomas.com/sites/utahstonesource/rr/rr1.jpg","http://www.forrestthomas.com/sites/utahstonesource/rr/rr2.jpg","http://www.forrestthomas.com/sites/utahstonesource/rr/rr3.jpg","http://www.forrestthomas.com/sites/utahstonesource/rr/rr4.jpg");
	var randomNum = Math.floor((Math.random() * myPix.length));
	//document.getElementById("myPicture").src = myPix[randomNum];
	document.write('<img src="'+myPix[randomNum]+'">');
}

