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

var MiddleAdImages = new Array("images/sponsors/carfinancial-ad-147x227.gif", "images/sponsors/ppg-banner-147x227.jpg", "images/sponsors/DrivenBrands147x227.gif", "images/sponsors/FHS-webad-0510.gif");
var MiddleAdURL = new Array("http://www.carfinancial.com/", "http://www.premierperformancegroup.com/", "http://www.drivenbrands.com/jumpstart", "http://www.fhsoils.com/motor_smokeless_motor_oil.html");
var MiddleAdAlt = new Array("CAR Financial Services will be here for your business, providing a stable source of funding and reliable service today and tomorrow.", "Complete consulting services.", "Create Incremental Service and Parts Revenue!", "FHS: Smokeless motor oil and other automotive products!");
var MiddleAd = 0;

function MiddleRotate() {
	MiddleAd++;
	if (MiddleAd == MiddleAdImages.length) {
		MiddleAd = 0;
	}

	RotatableBanner = document.getElementById("MiddleAdBanner");
	RotatableBanner.src = MiddleAdImages[MiddleAd];
	RotatableBanner.alt = MiddleAdAlt[MiddleAd];
	RotatableBanner.title = MiddleAdAlt[MiddleAd];

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

function newMiddleLocation() {
	document.location.href = MiddleAdURL[MiddleAd];
	return false;
}

function initMiddleBannerLink() {
	if (document.getElementById("MiddleAdBanner").parentNode.tagName == "A") {
		document.getElementById("MiddleAdBanner").parentNode.onclick = newMiddleLocation;
	}

	MiddleRotate();
}
