myPix = new Array("http://www.wwrr.com/events/pagepic_easter.jpg", "http://www.wwrr.com/events/pagepic_lights.jpg", "http://www.wwrr.com/events/pagepic_picnic.jpg", "http://www.wwrr.com/events/pagepic_santa.jpg", "http://www.wwrr.com/events/pagepic_vetsday.jpg", "http://www.wwrr.com/events/pagepic_wildwest.jpg", "http://www.wwrr.com/events/pagepic_civilwar.jpg", "http://www.wwrr.com/events/pagepic_catering.jpg")
imgCt = myPix.length 

function choosePic() {
	if (document.images) {
		randomNum = Math.floor((Math.random() * imgCt))
		document.randomPic.src = myPix[randomNum]
		}
	}

