var quote = new Array(7);

quote[0] = "... a dynamic process of interactive learning with opportunities for class leadership.<br />-Michael B. Martin, 2003";
quote[1] = "Each and every person in our class was \"special\" and brought their own uniqueness to our group.  The fellowship was one of my fondest memories.<br />-Joannie Jolley, 2002";
quote[2] = "Our group of individuals melded into something part college seminar, part citizens committee, and all family.<br />-Paula Jordan, 2005";
quote[3] = "I found it fascinating to see the inner workings of the county.  I still share what I learned [at Leadership Rutherford] with others as the opportunity presents itself.<br />-Robert Harris, 2000";
quote[4] = "Even though I am a lifelong resident of Rutherford County and thought I knew most everything about it, I found out that I didn’t know half as much as I thought I did.  This was quite an eye-opening experience ...<br />-Bud Oates, 2001";
quote[5] = "I enjoyed getting to know individuals from throughout the community [and to] ... learn more about the county I live in.<br/>-Traisha White, 2003";
quote[6] = "I am deeply grateful to Leadership Rutherford and the multitudes of generous, insightful presenters who shared with us their knowledge of Rutherford County.<br />-Paula Jordan, 2005";

var timer;
var currentQuote = 0;

initQuote = function()
{
	currentQuote = Math.round( Math.random() * (quote.length-1) );
	document.getElementById('quote').innerHTML = quote[currentQuote];
	nextQuote();
}

nextQuote = function()
{
	new Effect.Fade('quote', {duration: 2.0});
	timer = setTimeout('changeQuote();', 2000);
}

changeQuote = function()
{
	if(currentQuote < quote.length - 1)
		currentQuote++;
	else
		currentQuote = 0;

	document.getElementById('quote').innerHTML = quote[currentQuote];
	new Effect.Appear('quote', {duration: 2.0});
	timer = setTimeout('nextQuote();', 5500);
}

