//<!-- Begin


var themainImages = new Array()
var themainImagesDesc = new Array()

// To add more image files, continue with the
// pattern below, adding to the array.

themainImages[0] = '../images/sub_main_image.jpg'
themainImagesDesc[0] = 'Plant Maintenance Equipment'
themainImages[1] = '../images/sub_main_image02.jpg'
themainImagesDesc[1] = 'Monitor Ergonomics'
themainImages[2] = '../images/sub_main_image03.jpg'
themainImagesDesc[2] = 'Meat Processor Equipment'
themainImages[3] = '../images/sub_main_image04.jpg'
themainImagesDesc[3] = 'Food Processing Equipment'
themainImages[4] = '../images/sub_main_image05.jpg'
themainImagesDesc[4] = ''
themainImages[5] = '../images/sub_main_image06.jpg'
themainImagesDesc[5] = 'Meat Processor Supplies'
themainImages[6] = '../images/sub_main_image07.jpg'
themainImagesDesc[6] = ''

themainImages[7] = '../images/sub_main_image08.jpg'
themainImagesDesc[7] = ''
themainImages[8] = '../images/sub_main_image09.jpg'
themainImagesDesc[8] = ''
themainImages[9] = '../images/sub_main_image10.jpg'
themainImagesDesc[9] = ''
themainImages[10] = '../images/sub_main_image11.jpg'
themainImagesDesc[10] = ''
themainImages[11] = '../images/sub_main_image12.jpg'
themainImagesDesc[11] = ''


// do not edit anything below this line

var j = 0
var p = themainImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = themainImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showmainImage(){
document.write('<img src="'+themainImages[whichImage]+'" alt="'+themainImagesDesc[whichImage]+'">');
}


//  End -->
