// JavaScript Document

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

	// QUOTATIONS
	Quotation[0] = 'The Thomas Co. Jewelers<br />Martinell Ranch &ndash; Dell<br />MT Morning Fresh Roasted Coffee';
	Quotation[1] = 'Boots Country Karaoke<br />Dillon Liquor Store<br />Murphy&#39;s Lawn &amp; Property Management';
	Quotation[2] = 'Steel Creek Bed &amp; Breakfast<br />Soroptomist International of Dillon<br />Rockin&#39; R Merchantile';
	Quotation[3] = 'The Storage Place<br />Sandra Micken PhD<br />Metlen Hotel &amp; Saloon';
	Quotation[4] = 'Dillon Public Library<br />Kupfer Club Restaurant<br />Lo&ndash;Cost Auto Rental';
	Quotation[5] = 'Motel 6 &ndash; Dillon<br />Adventure Cycle and Sled<br />Polaris Montana Vacations';
	Quotation[6] = 'Dillon Medical Clinic<br />Rapid Electric and Construction<br />Healing Horizons Therapeutic Massage';
	Quotation[7] = 'Meriwether Ranch<br />Tanning Depot<br />24/7 Muscle &amp; Fitness';
	Quotation[8] = 'Sportswear &amp; Design<br />Jim Clark Drywall &amp; Remodeling<br />Maverick Ski Company';
	Quotation[9] = 'General Welding  &amp; Repair<br />Prudential Montana';
	

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

//–>











