var theImagestwo = new Array() // do not change this

theImagestwo[0] = 'animated7.gif'
theImagestwo[1] = 'animated8.gif'
theImagestwo[2] = 'animated9.gif'
theImagestwo[3] = 'animated10.gif'
theImagestwo[4] = 'animated11.gif'
theImagestwo[5] = 'animated12.gif'

var j = 0
var p = theImagestwo.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagestwo[i]
}
var whichImagetwo = Math.round(Math.random()*(p-1));
function showImagetwo(){
document.write('<img src="gifs/'+theImagestwo[whichImagetwo]+'" border=1px>');
}