window.onload = initBannerLink;

var adImages = new Array("image/contribute4.jpg","image/interview.bmp","image/sharedhumanity.png","image/cultureofpeace.jpg","image/prayer.jpg","image/QuietRevolution.gif");
var adURL = new Array("sgi-usa.org/memberresources/contributions","youtube.com/rainesam","sgi.info/mabl/sgi/popup/sgi_intro_en.html","sgi-usa.org/aboutsgi/cultureofpeace/","sgi-usa.org/newmembers/dailypractice.php", "sgi.info/mabl/aqr/popup/aqr_envoice_nosub.html");
var thisAd = 0;

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 5 * 1000);
}

function newLocation() {
	document.location.href = "http://www." + adURL[thisAd];
	return false;
}

function initBannerLink() {
	if (document.getElementById("adBanner").parentNode.tagName == "A") {
		document.getElementById("adBanner").parentNode.onclick = newLocation;
	}
	
	rotate();
}