function showNextQuote(currentIndex, maxNumQuotes) {
	Element.hide("clientQuotes"+currentIndex);
	nextIndex = currentIndex + 1;
	if (nextIndex>maxNumQuotes) nextIndex = 1;
	Element.show("clientQuotes"+nextIndex);
	delay_seconds = 8;
	setTimeout("showNextQuote("+nextIndex+", "+maxNumQuotes+")", delay_seconds*1000);
}

function load() {
	showNextQuote(4, 4);
}
