// JavaScript Document
<!-- Hide from old browsers
adImages = new Array("images/corinthians_text.gif","images/isaiah_text.gif","images/psalm_text.gif")
thisAd = 0
imgCt = adImages.length
function rotate() 
{
	if (document.images) 
	{
	  thisAd++
	  if (thisAd == imgCt) 
	  {
		thisAd = 0
	  }
	 document.adBanner.src=adImages[thisAd]
	 setTimeout("rotate()", 5 * 1000)
	}
}
// End hide script from old browsers -->
