

var theImages = new Array()

theImages[0] = 'elems/text/1.gif'
theImages[1] = 'elems/text/2.gif'
theImages[2] = 'elems/text/3.gif'
theImages[3] = 'elems/text/4.gif'
theImages[4] = 'elems/text/5.gif'
theImages[5] = 'elems/text/6.gif'
theImages[6] = 'elems/text/7.gif'
theImages[7] = 'elems/text/8.gif'
theImages[8] = 'elems/text/9.gif'


// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//-->



