
<!--
// Set up the image files to be used.
var theImages5 = 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!

theImages5[0] = 'images/605_bike/dsc_0729.gif';
theImages5[1] = 'images/605_bike/dsc_0730.gif';
theImages5[2] = 'images/605_bike/dsc_0767.gif';
theImages5[3] = 'images/605_bike/dsc_0768.gif';
theImages5[4] = 'images/605_bike/dsc_0784.gif';
theImages5[5] = 'images/605_bike/dsc_0794.gif';
theImages5[6] = 'images/605_bike/dsc_0795.gif';
theImages5[7] = 'images/605_bike/dsc_0796.gif';
theImages5[8] = 'images/605_bike/dsc_0804.gif';
theImages5[9] = 'images/605_bike/mvc-149f.gif';
theImages5[10] = 'images/605_bike/mvc-150f.gif';
theImages5[11] = 'images/605_bike/mvc-151f.gif';
theImages5[12] = 'images/605_bike/mvc-152f.gif';

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

var j = 0
var p = theImages5.length;

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

var whichImage = Math.round(Math.random()*(p-1));
function showImage5(){
document.write('<img border="0" src="../'+theImages5[whichImage]+'" alt="Spring 2006 Bikes Gallery">');
}

//-->
