// JavaScript Document
function RandomImage() {
	var img = new Array(6), Asize, i, image, opacity=0;
	img[0] = "images/hamilton/downtown_arch_02.jpg";
	img[1] = "images/hamilton/hessvillage_02.jpg";
	img[2] = "images/hamilton/gorepark_02.jpg";
	img[3] = "images/hamilton/skyway_02.jpg";
	img[4] = "images/hamilton/hamiltonplace_02.jpg";
	img[5] = "images/hamilton/escarpment_02.jpg";
	Asize = img.length;
	i =Math.floor(Math.random()*Asize)
	//image = document.getElementById('locationImg');
	document.getElementById('locationImg').src = img[i];
	//initImage();
}