function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '33% of H.E.R.O. children are HIV positive and the other 67% have an infected parent /guardian, sibling or residential relative.';
	Quotation[1] = 'Georgia has the 8th highest rate of Pediatric AIDS in the US';
	Quotation[2] = '90% of our Children come from families that make  $10,000/yr or less';
	Quotation[3] = 'There are 12,000 children in Georgia affected by HIV/AIDS';
	Quotation[4] = 'H.E.R.O. for Children is the one organization in Georgia solely focused on Quality of Life care for children with HIV/AIDS';
	Quotation[5] = 'H.E.R.O. runs the state of Georgias mentoring program for children with HIV/AIDS';
	Quotation[6] = 'H.E.R.O. developed a 1st of its kind Life Skills curriculum for children with HIV/AIDS';
	Quotation[7] = 'H.E.R.O. has the largest student run college philanthropy in the state of Georgia';
	Quotation[8] = 'Almost 25 percent of H.E.R.O. children have lost a parent to HIV/AIDS complications.';
	

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];

	
}
