// JavaScript Document


			var thePics = new Array();
			thePics[0] = "img/home_img1.jpg"
			thePics[1] = "img/home_img2.jpg"
			thePics[2] = "img/home_img3.jpg"
			thePics[3] = "img/home_img4.jpg"
			thePics[4] = "img/home_img5.jpg"
			thePics[5] = "img/home_img6.jpg"
			thePics[6] = "img/home_img7.jpg"
	
	
		var rn = Math.floor(Math.random() * thePics.length);
			if (rn == 0) {
			  rn = 1
		}

		document.write("<img src='"+thePics[rn]+"' border=0>");
		