<!--

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

theImagesDriveline[0] = '/images/products/prod_six_speed.jpg'
theImagesDriveline[1] = '/images/products/prod_hm_drive_system.gif'
theImagesDriveline[2] = '/images/products/prod_hm_trans_cover.gif'

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

var j = 0
var p = theImagesDriveline.length;

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

var whichImageDriveline = Math.round(Math.random()*(p-1));
function showImageDriveline(){
document.write('<IMG SRC="'+theImagesDriveline[whichImageDriveline]+'" WIDTH="106" HEIGHT="84" ALT="Driveline" BORDER="0">');
}

//-->
