// JavaScript Document

			var thePics = new Array();
			thePics[0] = "random_images/2-25-10/Making-Change_rdm.jpg"
			thePics[1] = "random_images/2-25-10/ochs_john_rdm.jpg"
			thePics[2] = "random_images/2-25-10/red_rdm.jpg"
	
		var rn = Math.floor(Math.random() * thePics.length);
			if (rn == 0) {
			  rn = 1
		}

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