// JavaScript Document

myPix=new Array("http://www.stream-1.com/images/image001.jpg", "http://www.stream-1.com/images/image002.jpg",
"http://www.stream-1.com/images/image003.jpg",
"http://www.stream-1.com/images/image004.jpg",
"http://www.stream-1.com/images/image005.jpg",
"http://www.stream-1.com/images/image006.jpg",
"http://www.stream-1.com/images/image007.jpg",
"http://www.stream-1.com/images/image008.jpg")

imgCt=myPix.length

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