<!--

var images = new Array;
var imgnum = -1;

images[0] = new Image();
images[0].src = 'sitegraphics/products/HBC-4301 Fighter Jets.jpg';
images[0].alt = 'HBC-4301 Hot Bonding Controller';
images[1] = new Image();
images[1].src = 'sitegraphics/products/1231 and 1232 Oxygen Probes.jpg';
images[1].alt = '1231 and 1232 Oxygen Probes';
images[2] = new Image();
images[2].src = 'sitegraphics/products/1231 Oxygen Probes.jpg';
images[2].alt = '1231 Oxygen Probes';
images[3] = new Image();
images[3].src = 'sitegraphics/products/1232 Oxygen Probe.jpg';
images[3].alt = '1232 Oxygen Probe';
images[4] = new Image();
images[4].src = 'sitegraphics/products/1234 Oxygen Sensor.jpg';
images[4].alt = '1234 Oxygen Sensor';
images[5] = new Image();
images[5].src = 'sitegraphics/products/1632 Oxygen Analyser.jpg';
images[5].alt = '1632 Oxygen Analyser';
images[6] = new Image();
images[6].src = 'sitegraphics/products/1634 Carbon Analyser.jpg';
images[6].alt = '1634 Carbon Analyser';
images[7] = new Image();
images[7].src = 'sitegraphics/products/1635 Water Vapour Transmitter.jpg';
images[7].alt = '1635 Water Vapour Transmitter';
images[8] = new Image();
images[8].src = 'sitegraphics/products/1637 Oxygen and Carbon Dioxide Analyser.jpg';
images[8].alt = '1637 Oxygen and Carbon Dioxide Analyser';
images[9] = new Image();
images[9].src = 'sitegraphics/products/1638 Dew Point Analyser.jpg';
images[9].alt = '1638 Dew Point Analyser';
images[10] = new Image();
images[10].src = 'sitegraphics/products/HBC-4301 and Notebook.jpg';
images[10].alt = 'HBC-4301 Hot Bonding Controller';

function loadRndImg() {

	var newnum = 0;

	do {
		newnum = Math.round(Math.random() * (images.length - 1));
	} while(newnum == imgnum);

	imgnum = newnum;

	document.getElementById('imgProduct').setAttribute('src', images[imgnum].src);
	document.getElementById('imgProduct').setAttribute('alt', images[imgnum].alt);
	document.getElementById('imgAlt').innerHTML = images[imgnum].alt;

	setTimeout("loadRndImg()", 5000);

}

//-->