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

	// QUOTATIONS
	Quotation[0] = '&bull;&nbsp;<span class="orange-emp">Mustang Trailers</span>, a division of Stone and Company, has been manufacturing and distributing basic models and custom trailers for over 10 years.';
	Quotation[1] = '&bull;&nbsp;<span class="orange-emp">Mustang Trailers</span> takes great pride in providing its customers with innovative trailer designs.';
	Quotation[2] = '&bull;&nbsp;By developing new models and features to the superior product line, <span class="orange-emp">Mustang Trailers</span> will provide you with high quality trailers that will last for years to come.';
	Quotation[3] = '&bull;&nbsp;<span class="orange-emp">Mustang Trailers</span> offers parts and accessories for all custom and basic trailer models.';
	Quotation[4] = '&bull;&nbsp;<span class="orange-emp">Mustang Trailers</span> has skilled salespeople, who are always ready to assist our customers in finding the right trailer for their needs.';

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