
<!--
// Set up the image files to be used.
var theImages2 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
// Rememeber to increment the theImages[x] index!

theImages2[0] = 'images/ranbike00.jpg';
theImages2[1] = 'images/ranbike01.jpg';
theImages2[2] = 'images/ranbike02.jpg';
theImages2[3] = 'images/ranbike03.jpg';
theImages2[4] = 'images/ranbike04.jpg';
theImages2[5] = 'images/ranbike05.jpg';
theImages2[6] = 'images/ranbike06.jpg';
theImages2[7] = 'images/ranbike07.jpg';
theImages2[8] = 'images/ranbike08.jpg';
theImages2[9] = 'images/ranbike09.jpg';
theImages2[10] = 'images/ranbike10.jpg';
theImages2[11] = 'images/ranbike11.jpg';
theImages2[12] = 'images/ranbike12.jpg';
theImages2[13] = 'images/ranbike13.jpg';
theImages2[14] = 'images/ranbike14.jpg';


// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages2.length;

var pBuffer = new Array()
for (i = 0; i < p; i++){
   pBuffer[i] = new Image()
   pBuffer[i].src = theImages2[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage2(){
document.write('<img src="../'+theImages2[whichImage]+'">');
}

//-->
