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

	// QUOTATIONS
	Quotation[0] = 'We were Very impressed with everything about your company.  The driver was awesome, I think he goes above and beyond his duty.  <br />Thanks  -Argie Brown';
	Quotation[1] = 'We appreciated everything you did to transport my husband to Legacy at Salmon Creek.  Thanks many times over for your wonderful service.<br /> -Patricia';
	Quotation[2] = 'I have heard great things about your company from our residents here.  Thank you for everything.   <br />–Breanne,  Fort Vancouver Convalescent Center';
	Quotation[3] = 'You were awesome, I’m getting out the word.  Thank you  x100.  <br /> -Sandy';
	Quotation[4] = 'Dear Cheryl and Dale, …thank you so much for providing reliable and timely transportation... <br /> –Hope';
	Quotation[5] = 'The service is Superb.  Thank you so much!   Sincerely, <br />-Lillian Roberts';
	Quotation[6] = 'You are A one.  I told all my friend about you.  We will continue to recommend you and you will be my first call when we need transport.<br /> -Karen';
	Quotation[7] = 'I think this is the best service we have ever had in medical transport services.<br /> -Donna';
	Quotation[8] = 'I so enjoyed my ride in the “golden chariot”.   <br />-JJ Kiddes';
	Quotation[9] = 'I would highly recommend your service!!!!    <br />-Gary Z';
	Quotation[10] = 'You are affordable AND really nice people.  <br /> -Nola Cassel';
	Quotation[11] = 'The service is Superb.  Thank you so much!   Sincerely, <br />-Lillian Roberts';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*6000);
}
