function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '... if your nozzle caps on your range system are in tact?';
	Quotation[1] = '... if your emergency lighting battery back up is functioning?';
	Quotation[2] = '... if your lines are plugged in your automatic system?';
	Quotation[3] = '... where all of your fire extinguishers are?';
	Quotation[4] = '... if your lighting battery back up is functioning?';
	Quotation[5] = '... if your emergency lighting battery back up is functioning?';
	Quotation[6] = '... if your emergency lighting battery back up is functioning?';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*20000);
}