// JavaScript Document //


window.onload = rotate;


var thisAd = 0;





function rotate(){		

var adImages = new Array("../Graphics/listenonline2010.png","../Graphics/nightofworship.jpg","../Graphics/gefcworshipapr2011.jpg");

	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 5 * 1000);
}

					
