// JavaScript Document
myPix = new Array ("images/hp/pr_home_01.jpg","images/hp/pr_home_02.jpg","images/hp/pr_home_03.jpg","images/hp/pr_home_04.jpg","images/hp/pr_home_05.jpg")
imgCt  = myPix.length

function choosePic() {
if (document.images) {
randomNum = Math.floor ((Math.random() * imgCt))
document.myPicture.src = myPix[randomNum]
}
}