function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = 'Over <span class="outcomes-emp">85%</span> of Youth Successfully maintained or discharged to family or family-like setting. <a href="/outcomes/">Learn More</a>';
	Quotation[1] = 'Over <span class="outcomes-emp">78%</span> of Youth Showed Improved Overall Functioning. <a href="/outcomes/">Learn More</a>';
	Quotation[2] = 'Over a <span class="outcomes-emp">70%</span> Success Rate, Returning Children to their Families and Schools. <a href="/outcomes/">Learn More</a>';
	Quotation[3] = 'Our Education programs realized a <span class="outcomes-emp">100%</span> student graduation rate. <a href="/outcomes/">Learn More</a>';
	Quotation[4] = 'Community-based services helped <span class="outcomes-emp">88%</span> of kids remain at home and kept families together. <a href="/outcomes/">Learn More</a>';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*5000);
}

