//Two image slideshow for Muttley Crew homepage

window.onload = rotate;

var thisAd = 0;


function rotate() {
	var adImages = new Array("images/flask1.png","images/flask2.png");
	
	thisAd++;
	if(thisAd == adImages.length) {
		thisAd = 0;
	}
	
	document.getElementById("homeshow").src = adImages[thisAd];
	
	setTimeout(rotate, 1000);
}
