myPix = new Array("images/1.jpg", "images/2.jpg", "images/3.jpg", "images/4.jpg", "images/5.jpg", "images/6.jpg")

imgCt = 6
function choosePic() {
	if (document.images) {
		randomNum = Math.floor ((Math.random() * imgCt))
		document.myPicture.src = myPix[randomNum];
		
//		timeId=setTimeout("document.myPicture.src = myPix[randomNum]",1000)
		
	}	
}
