<!--

aryQuotes = new Array(
		"Yoga in the park and on the mountain",
		"The lifelong friendships made here",
		"Yoga on the Farm",
		"The healing atmosphere",
		"Dave's Tree Pose",
		"Peace, love, acceptance",
		"My body now flows!!!",
		"That feeling of coming home . . .",
		"The readings . . . always lovely",
		"Rediscovering I can do more than just a mom and can do new things",
		"Wendy's birthday party!!",
		"Wonderful, loving new friends",
		"International Day of Peace - singing, meditation, and love",
		"The grand opening & moments leading up to it!!",
		"Kids Yoga - moo/meow, downdog 'droppings', walking up the wall, blooming trees, floor slides",
		"The lost greyhound dog",
		"Fletch and Mugsy",
		"SAY hikes",
		"'Send it out, give it a voice!'",
		"Smiles, hugs, tears, snores, giggles",
		"Blacklight yoga",
		"Couple's yoga"
	)
	iQuoteCount = aryQuotes.length
	iQuoteIndex = 0


function changeQuote()
{
	window.document.getElementById("theQuote").innerHTML = "<i>"+aryQuotes[iQuoteIndex]+"</i>"

	iQuoteIndex++	
	
	if (iQuoteIndex == iQuoteCount)
	{
		iQuoteIndex = 0
	}
		
	setTimeout("clearQuote()", 6500)
		
}

function clearQuote()
{
	window.document.getElementById("theQuote").innerHTML = "<br><br><br>"
	setTimeout("changeQuote()", 550)
}

//-->
