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

var MiddleAdImages = new Array("images/sponsors/10PASS015_F-Web-Banners-147x227.gif", "images/sponsors/Collect_DBJ-1211.gif", "images/sponsors/carfinancial-ad-147x227.png", "images/sponsors/Sunrise_WebAd-1111.gif", "images/sponsors/Ituran_webad-0811.gif");
var MiddleAdURL = new Array("http://www.passtimeusa.com/", "http://info.paynearme.com/advertising_leedom", "http://www.carfinancial.com", "http://www.sunrisepremiums.net/", "http://www.ituranusa.com/");
var MiddleAdAlt = new Array("Improve collections ans reduce recovery costs.", "Collect cash conveniently - Collect cash 24/7 at 7-eleven.", "CAR Financial Services will be here for your business, providing a stable source of funding and reliable service today and tomorrow.", "Increase Sales with Vacation Certificates and Travel Vouchers", "Imporve your bottom line! Advanced GPS tracking system.");
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];
	RotatableBanner.style.width = 147 + 'px';
	RotatableBanner.style.height = 227 + 'px';

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

