attachEventListener(window, 'load', initBottomRightBannerLink, false);

var BottomRightAdImages = new Array("images/sponsors/WorldCard-web.gif", "images/sponsors/HPA-ban0810-DBJsite.gif");
var BottomRightAdURL = new Array("http://www.achcollector.com/prepaiddebit.aspx#content", "http://www.horsepowerads.com/win/");
var BottomRightAdAlt = new Array("You're the Bank. Why not have your own card? Leedom Pre-paid Debit Card!", "Get Noticed - Horsepower Ads");
var BottomRightAd = 0;

function BottomRightRotate() {
	BottomRightAd++;
	if (BottomRightAd == BottomRightAdImages.length) {
		BottomRightAd = 0;
	}

	RotatableBanner = document.getElementById("BottomRightAdBanner");
	RotatableBanner.src = BottomRightAdImages[BottomRightAd];
	RotatableBanner.alt = BottomRightAdAlt[BottomRightAd];
	RotatableBanner.title = BottomRightAdAlt[BottomRightAd];

	setTimeout("BottomRightRotate()", 13000);
}

function newBottomRightLocation() {
	document.location.href = BottomRightAdURL[BottomRightAd];
	return false;
}

function initBottomRightBannerLink() {
	if (document.getElementById("BottomRightAdBanner").parentNode.tagName == "A") {
		document.getElementById("BottomRightAdBanner").parentNode.onclick = newBottomRightLocation;
	}

	BottomRightRotate();
}
