window.onload = rotate;

var infoHeader = new Array("WELCOME!")
var infoText = new Array("It is our hope that you will experience Grace through the ministry and care of Grace Bible Fellowship.  Most importantly, the Grace of our Lord Jesus Christ.  Secondly, the Grace of the Fellowship of His children.  And thirdly, the Grace and joy found in serving.  Our doors are always open to everyone.  May God bless you!  Pastor Rick.")
var infoURL = new Array("/parking.htm")
//var infoImages = new Array("/images/add.gif", "/images/back.gif", "/images/add1.gif");
var thisAd = 0;

function rotate() {
	thisAd++;
	if (thisAd == infoHeader.length) {
		thisAd = 0;
	}
	document.getElementById("infoHeader").value = infoHeader[thisAd];
	document.getElementById("infoText").value = infoText[thisAd];
	document.getElementById("infoURL").href = infoURL[thisAd];
	//document.getElementById("infoImages").src = infoImages[thisAd];
    
	setTimeout("rotate()", 20 * 500);
}
