// JavaScript Document
function RandomImage() {
	var img = new Array(9), Asize, i, image, opacity=0;
	img[0] = "images/hamilton_agh_02.jpg";
	img[1] = "images/brampton_cityhall_02.jpg";
	img[2] = "images/st_catherines_canalock_02.jpg";
	img[3] = "images/stcatharines/hernder_02.jpg";
	img[4] = "images/stcatharines/rodmanhall_02.jpg";
	img[5] = "images/hamilton/skyway_02.jpg";	
	img[6] = "images/brampton/heritagetheatre_02.jpg";	
	img[7] = "images/brampton/theartre_02.jpg";	
	img[8] = "images/hamilton/gorepark_02.jpg";	
	Asize = img.length;
	i =Math.floor(Math.random()*Asize)
	//image = document.getElementById('locationImg');
	document.getElementById('locationImg').src = img[i];
	//initImage();
}