homePics = new Array ("images/hm_hdr1.jpg","images/hm_hdr2.jpg","images/hm_hdr3.jpg")
		imgCt = homePics.length
		
		function choosePic(){
			if (document.images) {
			randomNum = Math.floor ((Math.random() * imgCt))
			document.homepic.src = homePics[randomNum]
			}
		}

subPics = new Array ("images/sub_hdr1.jpg","images/sub_hdr2.jpg","images/sub_hdr3.jpg")
		imgCt = subPics.length
		
		function chooseSubPic(){
			if (document.images) {
			randomNum = Math.floor ((Math.random() * imgCt))
			document.subpic.src = subPics[randomNum]
			}
		}
