window.onload = choosePic;

var adImages = new Array("graphics/quote01.gif","graphics/quote02.gif","graphics/quote03.gif","graphics/quote04.gif","graphics/quote05.gif","graphics/quote06.gif","graphics/quote07.gif");

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("quotecycle").src = adImages[thisAd];

	setTimeout("rotate()", 7 * 1000);
}


function choosePic() {
	thisAd = Math.floor((Math.random() * adImages.length));
	document.getElementById("quotecycle").src = adImages[thisAd];
	
	rotate();
}

						
