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

var TopAdImages = new Array("images/sponsors/carfinancial-ad-147x227.gif", "images/sponsors/10PASS015_F-Web-Banners-147x227.gif");
var TopAdURL = new Array("http://www.carfinancial.com/", "http://www.passtimeusa.com/");
var TopAdAlt = new Array("CAR Financial Services will be here for your business, providing a stable source of funding and reliable service today and tomorrow.", "Improve collections ans reduce recovery costs.");
var TopAd = 0;

function TopRotate() {
	TopAd++;
	if (TopAd == TopAdImages.length) {
		TopAd = 0;
	}

	RotatableBanner = document.getElementById("TopAdBanner");
	RotatableBanner.src = TopAdImages[TopAd];
	RotatableBanner.alt = TopAdAlt[TopAd];
	RotatableBanner.title = TopAdAlt[TopAd];

	setTimeout("TopRotate()", 7000);
}

function newTopLocation() {
	document.location.href = TopAdURL[TopAd];
	return false;
}

function initTopBannerLink() {
	if (document.getElementById("TopAdBanner").parentNode.tagName == "A") {
		document.getElementById("TopAdBanner").parentNode.onclick = newTopLocation;
	}

	TopRotate();
}
