subPics = new Array ("images/sunflower.jpg","images/sunflower2.jpg")
		imgCt = subPics.length
		
		function choosePic(){
			if (document.images) {
			randomNum = Math.floor ((Math.random() * imgCt))
			document.sunflower.src = subPics[randomNum]
			}
		}