function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '<font color=#294A7B><b>www.IndyPropertyInvestors.com</b> - Property Investment Club</font>';
	Quotation[1] = '<font color=#294A7B><b>www.RehabbingHouses.com</b> - Dwayne & Michelle Bray, The Rehabbing Pros</font>';
	Quotation[2] = '<font color=#FF6600><b>www.AssetsProtection.net</b> - Attorney Pat Tarr</font>';
	Quotation[3] = '<font color=#800000><b>www.CherryPickingBankruptcy.com</b> - Attorney David Tarr</font>';
	Quotation[4] = '<font color=#FF6600><b>www.SiestaIslesHOA.com</b> - SW Florida Home Owners Assoc</font>';
	Quotation[5] = '<font color=#800000><b>www.netHomeSweetHome.com</b> - Joe Kelly, Real Estate Investor</font>';
	Quotation[6] = '<font color=#808000><b>www.IndyHomeBuyerz.com</b> - Charlie & Randy France, Real Estate Investors</font>';
	Quotation[7] = '<font color=#808000><b>www.BestHomeschoolingPrograms.com</b> - Complete Ind Study, Child to Adult</font>';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*3000);
}
