var theImages = new Array()

//Random-loading images
theImages[0] = 'images/causeway-home.jpg' // replace with names of images
theImages[1] = 'images/devenish-island-home.jpg' // replace with names of images
theImages[2] = 'images/golf-home.jpg' // replace with names of images
theImages[3] = 'images/ulster-folk-home.jpg' // replace with names of images
theImages[4] = 'images/mourne-mountains-home.jpg' // replace with names of images
theImages[5] = 'images/shopping-home.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(){
	if(whichImage==0){
	document.write('<img src="'+theImages[whichImage]+'" alt="The Giants Causeway on the North Coast of County Antrim, Northern Ireland" class="home_image_left"/>');
	}
	else if(whichImage==1){
	document.write('<img src="'+theImages[whichImage]+'" alt="Devenish Island Monastic Site, Co.Fermanagh" class="home_image_left"/>');
	}
	else if(whichImage==2){
	document.write('<img src="'+theImages[whichImage]+'" alt="Irish Golf Courses" class="home_image_left"/>');
	}
	else if(whichImage==3){
	document.write('<img src="'+theImages[whichImage]+'" alt="Ulster American Folk Park - National Museums, Northern Ireland" class="home_image_left"/>');
	}
	else if(whichImage==4){
	document.write('<img src="'+theImages[whichImage]+'" alt="Mourne Mountains, County Down, Northern Ireland" class="home_image_left"/>');
	}
	else if(whichImage==5){
	document.write('<img src="'+theImages[whichImage]+'" alt="Shopping in Ireland" class="home_image_left"/>');
	}
}