// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'logos/thumb_manufac_accutex.jpg'
theImages[1] = 'logos/thumb_manufac_agma.jpg'
theImages[2] = 'logos/thumb_manufac_breton.jpg'
theImages[3] = 'logos/thumb_manufac_brownsharpe.jpg'
theImages[4] = 'logos/thumb_manufac_chiron.jpg'
theImages[5] = 'logos/thumb_manufac_doosan.jpg'
theImages[6] = 'logos/thumb_manufac_goratu.jpg'
theImages[7] = 'logos/thumb_manufac_hanwha.jpg'
theImages[8] = 'logos/thumb_manufac_hexagon_tesa.jpg'
theImages[9] = 'logos/thumb_manufac_index.jpg'
theImages[10] = 'logos/thumb_manufac_juaristi.jpg'
theImages[11] = 'logos/thumb_manufac_mh.jpg'
theImages[12] = 'logos/thumb_manufac_renishaw.jpg'
theImages[13] = 'logos/thumb_manufac_speroni.jpg'


// do not edit anything below this line

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