window.onload = rotate;

var adImages = new Array("assets/splash/splash4.jpg","assets/splash/splash1.jpg","assets/splash/splash2.jpg","assets/splash/splash3.jpg","assets/splash/splash5.jpg");
var thisAd = 0;

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

	setTimeout("rotate()", 3 * 1000);
}

