var thepics = new Array() // do not change this


thepics[0] = 'icon/pics/hunter1-sm.png'
thepics[1] = 'icon/pics/hunter2-sm.png'
thepics[2] = 'icon/pics/3deer-sm.png'



var j = 0
var p = thepics.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = thepics[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage1(){
document.write('<img src="'+thepics[whichImage]+'" width="257" height="193">');
}

