window.onload = rotate;

var adImages = new Array("http://www.marketaccesstool.com/images/EMATOnlytheefficientwillsurvive.jpg","http://www.marketaccesstool.com/images/EMATOnlythemostefficientcancompete.jpg","http://www.marketaccesstool.com/images/EMATSellmorefaster.jpg","http://www.marketaccesstool.com/images/EMATBuildmorerelationshipsfaster.jpg");
var thisAd = 0;

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 4 * 500);
}

