function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '<span id="chyma-e">Chyma</span> Now that shift changes are in real-time we have a good, current up-to-date schedule, and the software has solved a lot of the problems that can occur when physicians start trading shifts. We\'ve had very few missed shifts since we\'ve been on Chyma&trade;.';
	Quotation[1] = '<span id="isaix-e">Isaix</span> Thanks to the IsaiX Interactive Document Trainer, our sales force is actually excited to learn about our products! IsaiX worked with us to customize solutions that focused on our very specific needs. Results have been astounding';
	Quotation[2] = '<span id="coach-e">Coach</span> The team at IsaiX helped us get the most out of our coaching model – the Coaching Technology&reg; allows for transparency – and increased coaching effectiveness – throughout our large organization.</span>';
	Quotation[3] = '<span id="isaix-e">IsaiX</span> Thanks to IsaiX we are able to deliver specific training and direction to our representatives in a timely, cost effective manner';
	Quotation[4] = '<span id="coach-e">Coach</span> IsaiX developed their Coaching Technology&reg; with our organization in mind! They helped us tackle the areas where we needed to step up, and feedback from our employees has never been more positive!</span>';
	Quotation[5] = '<span id="chyma-e">Chyma</span> Pandemic preparedness means knowing where your resources are at all times. Being able to access physicians to coordinate and communicate critical information in most imperative. When the key players in the healthcare system want to coordinate cross-institutional communications.</span>';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('testimonials').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*1000);
}