// JavaScript Document

myPix=new Array("http://www.kashiwagi-sui.jp/image/01.jpg", 
"http://www.kashiwagi-sui.jp/image/02.jpg",
"http://www.kashiwagi-sui.jp/image/03.jpg",
"http://www.kashiwagi-sui.jp/image/04.jpg",
"http://www.kashiwagi-sui.jp/image/05.jpg")

imgCt=myPix.length

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