// JavaScript Document

			var thePics = new Array();
			thePics[0] = "random_images/1-12/foltz-rdm.jpg"
			thePics[1] = "random_images/1-12/krim-rdm.jpg"
			thePics[2] = "random_images/1-12/marcotte-rdm.jpg"
			thePics[3] = "random_images/1-12/pryor-1-rdm.jpg"
			thePics[4] = "random_images/1-12/pryor-2-rdm.jpg"
	
		var rn = Math.floor(Math.random() * thePics.length);
			if (rn == 0) {
			  rn = 1
		}

		document.write("<img src='"+thePics[rn]+"' border=0>");
