var theImages = new Array()
//theImages[0] = '/Style Library/Images/ergoimages/logos1.jpg'


theImages[0] = 'Ergo is one of only a handful of BECTA accredited ICT Infrastructure Services providers in the UK.'
theImages[1] = 'All our end-user devices are assembled with care at our ISO accredited manufacturing plant in Nottingham.'
theImages[2] = 'In addition to building great laptops and desktops, we also have a highly regarded infrastructure services division.'


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]+'">');

document.write(theImages[whichImage]);
}





