<!--

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

theImagesEngine[0] = '/images/products/prod_hm_motor.jpg'
theImagesEngine[1] = '/images/products/prod_hm_rocket_boxes.gif'
theImagesEngine[2] = '/images/products/prod_hm_camcone.jpg'
theImagesEngine[3] = '/images/products/prod_hm_cnc_points_cover.gif'

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

var j = 0
var p = theImagesEngine.length;

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

var whichImageEngine = Math.round(Math.random()*(p-1));
function showImageEngine(){
document.write('<IMG SRC="'+theImagesEngine[whichImageEngine]+'" WIDTH="106" HEIGHT="84" ALT="Engine Parts" BORDER="0">');
}

//-->
