// <!-- Hide script from old browsers

adImages = 	new Array("files/bishop/Bishop4.jpg",
			 "files/bishop/Bishop5.jpg", 
			 "files/bishop/Bishop6.jpg",
			 "files/bishop/Bishop7.jpg",
			 "files/fashion_show/DSC00440.jpg",
			 "files/fashion_show/DSC00454.JPG",
			 "files/fashion_show/DSC00460.jpg",
                         "files/fashion_show/DSC00464.JPG");
thisAd = 0;
imgCt = adImages.length;

verseText = new Array("Karena begitu besar kasih Allah akan dunia ini, sehingga Ia telah mengaruniakan AnakNya yang tunggal, supaya setiap orang yang percaya kepadaNya tidak binasa, melainkan beroleh hidup yang kekal.<br> [Johanes 3:16] ",
					  "verse2",
					  "verse3", 
					  "verse4");
thisVerse = 0;
verseCt = verseText.length;

function rotate() {
	if (document.images) {
		if (document.adBanner.complete) {
			thisAd++;
			if (thisAd == imgCt) {
				thisAd = 0;
			}
			document.adBanner.src=adImages[thisAd];
			
			// now rotate the verse
			thisVerse++;
			if (thisVerse == verseCt) {
				thisVerse = 0;
			}
			//document.getElementById("verseCell").innerText = verseText[thisVerse];
		}
	  	setTimeout("rotate()", 5 * 1000);
	}
}

function openWin(URL) 
{
	aWindow=window.open(URL,"theWindow","height=400,width=600,scrollbars=yes,menubar=yes,resizable=yes,toolbar=yes");
}

//End hiding script from old browsers -->
