var theImages = new Array()

//Random-loading images
theImages[0] = 'http://common.alhgroup.info/c_cat/template_images_board/strip1.jpg' // replace with names of images
theImages[1] = 'http://common.alhgroup.info/c_cat/template_images_board/strip1.jpg' // replace with names of images
theImages[2] = 'http://common.alhgroup.info/c_cat/template_images_board/strip1.jpg' // replace with names of images

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="710" height="206" id="mainImage" alt="ALH Group" />');

}