//Random Image change
myPix = new Array("Media/Images/Home-Baptism.jpg","Media/Images/Home-Confirmation.jpg","Media/Images/Home-Calendar.jpg","Media/Images/Home-Funeral.jpg","Media/Images/Home-News.jpg", "Media/Images/Home-StCrossChurch.jpg", "Media/Images/Home-Wedding.jpg", "Media/Images/Home-Worship.jpg", "Media/Images/Home-Alja.jpg")
imgCt = myPix.length 

function choosePic() { 
  if (document.images) {
	if (document.myPicture)
	{
	 randomNum = Math.floor((Math.random() * imgCt)) 
	 document.myPicture.src = myPix[randomNum] 
	}
  } 
}