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


var TopAdImages = new Array("images/sponsors/scc-animated-banner ad.gif", "images/sponsors/TRSTaxMaxBannerblue.gif", "images/sponsors/GoldStarGPS_147x227.gif", "images/sponsors/SFP_DBJweb_0911-2.gif");
var TopAdURL = new Array("http://www.sterlingcreditcorporation.com/", "https://www.trstaxmax.com/TRSTaxMax/HowItWorks.aspx", "http://ad.goldstargps.com/nabdwebbannerjanuary2012", "http://www.spartan-partners.com/");
var TopAdAlt = new Array("Unlock your cash flow. Cash now, you keep the account - Sterling Financial", "Capture tax refund dollars now! Close more deals!", "See what your peers say about GPS tracking devices.", "Your focus is growth, ours is helping you achieve it!");
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];
	RotatableBanner.style.width = 147 + 'px';
	RotatableBanner.style.height = 227 + 'px';

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

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();
}

