<!-- //This script and many more are available free online at -->
<!-- //The JavaScript Source!! http://javascript.internet.com -->

var theImages = new Array()

theImages[0] = '../shf/mtu.gif'
theImages[1] = '../shf/cig.gif'
theImages[2] = '../shf/MWorld.gif'
theImages[3] = '../shf/atlas.gif'
theImages[4] = '../shf/alogo.gif'
theImages[5] = '../shf/dry.gif'
theImages[6] = '../shf/rjlogo.gif'
theImages[7] = '../shf/wfs.gif'
theImages[8] = '../shf/imcg.gif'
theImages[9] = '../shf/cutham.gif'
theImages[10] = '../shf/zflogo.gif'
theImages[11] = '../shf/transfield.gif'
theImages[12] = '../shf/AHydroSlogo.gif'
theImages[13] = '../shf/HSAlogoName.gif'

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));

document.write('<img src="'+theImages[whichImage]+'">');
