// JavaScript Document

// Set up the image files to be used.
var theNum = new Array() // do not change this


theNum[0] = '1';
theNum[1] = '2';
theNum[2] = '3';
theNum[3] = '4';
theNum[4] = '5';
// do not edit anything below this line

var j = 0
var p = theNum.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theNum[i]
}
var whichNum = Math.round(Math.random()*(p-1));
function showNum(){
document.write(''+theNum[whichNum]+'');
}

