<!--

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

theImagesHC[0] = '/images/products/prod_hm_hollywoodbar.jpg'
theImagesHC[1] = '/images/products/prod_hm_springer_riser.gif'
theImagesHC[2] = '/images/products/prod_hm_low_riser.gif'

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

var j = 0
var p = theImagesHC.length;

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

var whichImageHC = Math.round(Math.random()*(p-1));
function showImageHandControls(){
document.write('<IMG SRC="'+theImagesHC[whichImageHC]+'" WIDTH="106" HEIGHT="84" ALT="Hand Controls" BORDER="0">');
}

//-->
