<!-- 

adPix = new Array("../images/animated/donate.gif", "../images/animated/newsletter.gif", "../images/animated/volunteer.gif", "../images/animated/whois.gif")
adURL = new Array("what/donate.html", "about/newsletter.html", "what/volunteer.html", "about/profiles.html")
imgCt = adPix.length

function choosePic() {
	if (document.images) {
		randomNum = Math.floor((Math.random() * imgCt)) 
		document.adPicture.src = adPix[randomNum]
	}
}

function jumpPage() {
	document.location.href = "http://www.paganpridela.org/" + adURL[randomNum]
}

// -->