var reasonsTime = 30000;
var curReason = -1;
var reasons = [
	[1,'Culligan Soft Water Saves You Money!','01.gif'],
	[2,'Culligan Portable Exchange is a Simple Service; Nothing to Break Means Nothing to Repair.','02.jpg'],
	[3,'You can save up to 75% on all Household Soaps and Cleaners with Culligan Soft Water.','03.jpg'],
	[4,'Culligan Soft Water Gives you the Best Possible Soft Water Quality. True Soft Water.','04.jpg'],
	[5,'Culligan Drinking Water Gives You Beautiful, Clear Ice Cubes.','05.jpg'],
	[6,'Culligan has Rental Options So There are No Large Up Front Costs.','06.jpg'],
	[7,'Clothes Last Longer and Come Out Softer and Brighter when Washed in Culligan Soft Water','07.jpg'],
	[8,'Culligan Portable Exchange Service is Environmentally Friendly. No Brine Discharge.','08.jpg'],
	[9,'Culligan Soft Water Gives you Clean, Soft Skin with No Soap Scum Residue.','09.jpg'],
	[10,'Culligan Soft Water Leaves your Hair Softer and Silkier with Less Conditioner.','10.jpg'],
	[11,'With Culligan Drinking Water You Can Finally Taste your Juice, Tea, Coffee and Soups, not the Lousy Water.','11.jpg'],
	[12,'Stop Lifting Heavy Bags of Salt with Culligan Portable Exchange Service or Salt Delivery.','12.jpg'],
	[13,'Get Spot Free Dishes and Glassware with Culligan Soft Water.','13.jpg'],
	[14,'We Know You Will Love Culligan. Try it Without a Long Term Obligation. Month to Month Rental Available.','14.jpg'],
	[15,'Culligan Soft Water is True Soft Water Based on Tried and True Technologies, not Voodoo Science.','15.jpg'],
	[16,'Culligan Portable Exhange Service has Been Enjoyed by Cental Coast Families for Over 60 years.','16.jpg'],
	[17,'Culligan is a Locally Owned Company that Supports our Local Community.','17.jpg'],
	[18,'Improve Your Health. With Great Tasting Culligan Water at your Finger Tips You Will Drink More.','19.jpg'],
	[19,'Culligan Offers Simple Billing Options with Auto-Pay and Multiple Invoice Options.','18.gif'],
	[20,'Your Fixtures, Dishwasher and Water Heater will Last 50-80% Longer with Culligan Soft Water.','20.jpg'],
	[21,'Culligan Soft Water Makes Cleaning Your Bathroom and Kitchen Much Easier. No Soap Scum or Lime Build-Up.','21.gif'],
	[22,'Culligan Soft Water will Reduce Your Need for Environmentally Harsh Cleaning Chemicals.','22.gif']
	];
var tmpArray = new Array();
for (var i=0;i<reasons.length;i++) tmpArray.push(i);
var reasonsOrder = new Array();
for (var i=0;i<reasons.length;i++) reasonsOrder.push(tmpArray.splice(Math.floor(Math.random() * tmpArray.length),1));

function StartReasons() {
	RunMenu;
	ChangeReason();
	var md = document.getElementById("reasonsListDiv");
	for (var i=reasons.length - 1;i > -1;i--) {
		var nd = document.createElement('div');
		nd.style.margin = '40px';
		nd.style.fontWeight = 'bold';
		var nh = document.createElement('h2');
		nh.innerHTML = 'Reason #' + reasons[i][0] + ' Why You Should Have Culligan Water';
		nh.style.fontSize = '16pt';
		nh.style.color = '#880000';
		nh.style.margin = '5px 0px';
		var ni = document.createElement('img');
		ni.src = '/images/reasons/' + reasons[i][2];
		ni.alt = 'Reason #' + reasons[i][0];
		ni.style.width = '100px';
		ni.style.height = '100px';
		ni.align = 'left';
		ni.style.marginRight = '20px';
		var np = document.createElement('p');
		np.style.color = 'white';
		np.style.fontSize = '12pt';
		np.style.height = '100px';
		np.innerHTML = reasons[i][1];
		nd.appendChild(nh);
		nd.appendChild(ni);
		nd.appendChild(np);
		md.appendChild(nd);
	}
}

function ChangeReason() {
	curReason++;
	if (curReason == reasons.length) curReason = 0;
	document.getElementById('reasontitle').innerHTML = 'Reason #' + reasons[reasonsOrder[curReason]][0];
	document.getElementById('reasontext').innerHTML = reasons[reasonsOrder[curReason]][1];
	document.getElementById('reasonimg').src = '/images/reasons/' + reasons[reasonsOrder[curReason]][2];
	setTimeout('ChangeReason()', reasonsTime);
}
