window.onload = rotate;
var thisFrontsplash = 0;
function rotate() {
	thisFrontsplash++;
	if (thisFrontsplash == frontsplashImages.length) {
		thisFrontsplash = 0;
	}
document.getElementById("frontsplashBanner").src = frontsplashImages[thisFrontsplash];	
setTimeout(rotate, 12 * 1000);
}
