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> -The Rehabbing Pros</font>';
	Quotation[2] = '<font color=#FF6600><b>www.FMRX.com</b> -Ft Myers Perscription Shop</font>';
	Quotation[3] = '<font color=#800000><b>www.GoESC.org</b> -Edison Sailing Center</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> -Real Estate Investor</font>';
	Quotation[6] = '<font color=#808000><b>www.IndyHomeBuyerz.com</b> -Real Estate Investor</font>';
	Quotation[7] = '<font color=#808000><b>www.DoodleLikeAPro.com</b> -Complete Art Program</font>';
	Quotation[8] = '<font color=#800000><b>www.PeopleChoiceProperties.com</b> -Real Estate Investor</font>';
	Quotation[9] = '<font color=#808000><b>www.BerwickInvestments.com</b> -Real Estate Investor
	Quotation[10] = '<font color=#800000><b>www.AccentRealEstate.com</b> -Real Estate Investor/Broker</font>';
	Quotation[11] = '<font color=#808000><b>www.Postcard-Living.com</b> - Personal Photo Gallery

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*3000);
}
