window.onload = rotate;

var thisAd = 0;

function rotate() {
	var adImages = new Array("images/ToT.png","images/Nightmare-Bunkhouse.png","images/Wicked-Woods-Glow.png");

	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout(rotate, 3 * 1000);
}

