window.onload = choosePic;

var adImages = new Array(
	"indivpagepics/indexcopies/paddlefall06.jpg",
	"indivpagepics/indexcopies/karentaralynfall06.jpg",
	"indivpagepics/indexcopies/aroundlettersfall06.jpg");

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 3 * 1000);
}

						
