function text() {
};
text = new text();
number = 0;
// textArray
text[number++] = '<p class="CustomerQuoteText">Quick and easy access, organization, reports and improvements upon request have definitely made day-to-day operations more efficient as well as quick and easy. <span class="CustomerQuoteName">&mdash;&nbsp;Becca Merritt<br />Business Manager<br />Prosper Education</span></p>';
text[number++] = '<p class="CustomerQuoteText">Until now, our 55 site coordinators have been operating independently and doing all of the financial reporting individually for their respective sites. When we had 21sites this was a feasible task,  but with our growth, we had to find a more efficient way or face gross inaccuracies and enormous loss of time for our staff. <span class="CustomerQuoteName">&mdash;&nbsp;Debi Embry<br />District Coordinator for School-Aged Childcare<br />Brevard County, Florida School District</span></p>';
text[number++] = '<p class="CustomerQuoteText">Since our child care programs allow parents with flexible schedules,  the ParentPoint in Kinderstreet is awesome! It has made our billing process go very smoothly. <span class="CustomerQuoteName">&mdash;&nbsp;Nancy Easton<br />Oxford Community Schools</span></p>';
// keep adding items here...
increment = Math.floor(Math.random() * number);
document.write(text[increment]);
 