<!--

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

theImagesSheetmetal[0] = '/images/products/prod_hm_sportsplit.jpg'
theImagesSheetmetal[1] = '/images/products/prod_hm_bobbedstyle.jpg'
theImagesSheetmetal[2] = '/images/products/prod_hm_fl_style.jpg'
theImagesSheetmetal[3] = '/images/products/prod_hm_indianrear.jpg'

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

var j = 0
var p = theImagesSheetmetal.length;

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

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

//-->
