// JavaScript Document
myPix = new Array("images/bgrnd.jpg","images/bgrnd6.jpg","images/bgrnd7.jpg","images/bgrnd8.jpg")
imgCt = myPix.length

function choosePic() 
{
	if (document.images)
	{
		randomNum = Math.floor ((Math.random() * imgCt))
		document.myPicture.src = myPix[randomNum]
	}
}