
indexFrame = new Array("/art/hp_images1.jpg","/art/hp_images2.jpg","/art/hp_images3.jpg","/art/hp_images4.jpg","/art/hp_images5.jpg","/art/hp_images6.jpg","/art/hp_images7.jpg","/art/hp_images8.jpg","/art/hp_images9.jpg","/art/hp_images10.jpg")
imgCt = indexFrame.length

function pickFrame() {
        if (document.images) {
        randomNum = Math.floor
	((Math.random() * imgCt))
	document.thisFrame.src = indexFrame[randomNum]
	}
}


