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

var BottomAdImages = new Array("images/sponsors/dbj-spot-offer.gif", "images/sponsors/7240_PayteckWebBanner_1.gif", "images/sponsors/NowCom_5.11.gif" "images/sponsors/dave-anderson-201107.jpg");
var BottomAdURL = new Array("https://www.counselorlibrary.com/public/spot-offer.cfm", "http://www.payteck.cc/", "http://www.nowcom.com/?source=DBJ_online", "http://www.learntolead.com/hiringandteambuilding.cfm");
var BottomAdAlt = new Array("A concise, easy-to-read, monthly legal update that you can depend on to provide timely answers to legal questions you face every day.", "Innovative Credit Solutions - PayTeck", "Dealer Desktop®  is a car dealer software that provides you with the ability to run your dealership with one program.", "Dave Anderson's 90-day online hiring certification course");
var BottomAd = 0;

function BottomRotate() {
	BottomAd++;
	if (BottomAd == BottomAdImages.length) {
		BottomAd = 0;
	}

	RotatableBanner = document.getElementById("adBanner");
	RotatableBanner.src = BottomAdImages[BottomAd];
	RotatableBanner.alt = BottomAdAlt[BottomAd];
	RotatableBanner.title = BottomAdAlt[BottomAd];
	RotatableBanner.style.width = 147 + 'px';
	RotatableBanner.style.height = 227 + 'px';

	setTimeout("BottomRotate()", 9700);
}

function newBottomLocation() {
	document.location.href = BottomAdURL[BottomAd];
	return false;
}

function initBannerLink() {
	if (document.getElementById("adBanner").parentNode.tagName == "A") {
		document.getElementById("adBanner").parentNode.onclick = newBottomLocation;
	}

	BottomRotate();
}

