// JavaScript Document


			var thePics = new Array();
			thePics[0] = "homeImages/09.jpg"
			thePics[1] = "homeImages/01.jpg"
			thePics[2] = "homeImages/02.jpg"
			thePics[3] = "homeImages/03.jpg"
			thePics[4] = "homeImages/04.jpg"
			thePics[5] = "homeImages/05.jpg"
			thePics[6] = "homeImages/06.jpg"
			thePics[7] = "homeImages/07.jpg"
			thePics[8] = "homeImages/01.jpg"
			thePics[9] = "homeImages/12.jpg"
			thePics[10] = "homeImages/23.jpg"
			thePics[11] = "homeImages/11.jpg"
			thePics[12] = "homeImages/12.jpg"
			thePics[13] = "homeImages/13.jpg"
			thePics[14] = "homeImages/14.jpg"
			thePics[15] = "homeImages/15.jpg"
			thePics[16] = "homeImages/16.jpg"
			thePics[17] = "homeImages/17.jpg"
			thePics[18] = "homeImages/18.jpg"
			thePics[19] = "homeImages/19.jpg"
			thePics[20] = "homeImages/20.jpg"
			thePics[21] = "homeImages/21.jpg"
			thePics[22] = "homeImages/22.jpg"
			thePics[23] = "homeImages/23.jpg"
			thePics[24] = "homeImages/24.jpg"
	
		var rn = Math.floor(Math.random() * thePics.length);
			if (rn == 0) {
			  rn = 1
		}

		document.write("<img src='"+thePics[rn]+"' border=0>");
		
