<!--
	function changeTestimonial() {
		var testimonials = new Array();
		var credits = new Array();
		testimonials[0] = "&ldquo;The Vancouver International Film Festival has been using Recycling Alternative for the past 15 years. We find them efficient, accommodating and helpful.&rdquo;";
		credits[0] = "Christopher Adkins<br />Office Coordinator<br />Vancouver International Film Festival";
		
		testimonials[1] = "&ldquo;Since I was elected as a Member of Parliament in 1997, we have used ‘The Recycling Alternative’ in my office. It’s a great service. I encourage other offices and businesses to use ‘The Recycling Alternative’, so that we can all improve our efforts to reduce our ecological footprint on the environment.&rdquo;";
		credits[1] = "Jordan Hatton<br />Constituency Assistant to Libby Davies";
		
		testimonials[2] = "&ldquo;We have used The Recycling Alternative for many years because they provide a reliable and accommodating service at a competitive price.&rdquo;";
		credits[2] = "David Whetter<br />Conerstone Planning Group, Partner";

		testimonials[3] = "&ldquo;Our office likes to recycle as much as we like to produce music festivals! Recycling Alternative has been with us for well over a decade now and we intend to keep it that way.&rdquo;";
		credits[3] = "Coastal Jazz &amp; Blues Society<br />Producers for the TD Canada Trust Vancouver International Jazz Festival, Time Flies, &amp; Winterruption.";
		
		testimonials[4] = "&ldquo;Recycling Alternative is flexible, reliable and provides great customer service with a smile.&rdquo;";
		credits[4] = "Veronica Lee<br />Office Manager<br />Immigrant Services Society of BC";

		testimonials[5] = "&ldquo;Recycling Alternative offers competitive prices, reliable, easy and friendly customer service.&rdquo;";
		credits[5] = "Mandy Randhawa<br />Western Canada Office/Bureau de l’Ouest Canadien<br />Médicins Sans Frontières/Doctors Without Borders Canada";

		testimonials[6] = "&ldquo;You can count on Recycling Alternative’s services for reliable and confidential disposal.&rdquo;";
		credits[6] = "Jenny Kwan MLA, Vancouver-Mt. Pleasant";
		
		testimonials[7] = "&ldquo;The Recycling Alternative’s service suits our needs as a local arts organization and helps us make an environmental choice.&rdquo;";
		credits[7] = "Eileen Chen<br />Vancouver East Cultural Centre";
		
		var i = Math.ceil(7*Math.random());
		document.getElementById("js_testimonial").innerHTML = testimonials[i];
		document.getElementById("js_credit").innerHTML = credits[i];
	}

	function changeFact() {
		var facts = new Array();
		/*
		facts[0] = "Each year, people and businesses in the Lower Mainland generate 3 million tonnes of garbage and recyclables.";
		facts[1] = "Close to 10 per cent of the garbage going to the landfill is recyclable paper.";
		facts[2] = "It takes 75,000 trees to print a Sunday Edition of the New York Times.";
		facts[3] = "Recycling 54 KG of newspaper will save one tree.";
		facts[4] = "Paper and paper products accounts for more than 1/3 of all Canada’s waste.";
		facts[5] = "Canada uses 6 million tonnes of paper and paperboard annually. Only 1/4 is recycled after being used.";
		facts[6] = "115 billion sheets of paper are used annually for personal computers.";
		facts[7] = "Recycling paper uses 60% less energy than manufacturing virgin timber paper.";
		facts[8] = "Littered glass, plastic and aluminum containers last more than 1000 years.";
		facts[9] = "33% of your garbage is packaging that you throw away immediately.";
		facts[10] = "By the age of six months, the average Canadian has consumed the same amount of resources as the average person in the developing world consumes in a lifetime.";
		facts[11] = "The average north American will throw away 600 times his/her adult weight in garbage in a lifetime.";
		facts[12] = "Biodiesel reduces emissions of carbon monoxide (CO) by approximately 50% and carbon dioxide by 78% on a net lifecycle basis.";
		facts[13] = "Biodiesel is biodegradable and non-toxic - the U.S. Department of Energy confirms that biodiesel is less toxic than table salt and biodegrades as quickly as sugar.";
		*/
		facts[0] = "images/facts/fact_01.gif";
		facts[1] = "images/facts/fact_02.gif";
		facts[2] = "images/facts/fact_03.gif";
		facts[3] = "images/facts/fact_04.gif";
		facts[4] = "images/facts/fact_05.gif";
		facts[5] = "images/facts/fact_06.gif";
		facts[6] = "images/facts/fact_07.gif";
		facts[7] = "images/facts/fact_08.gif";
		facts[8] = "images/facts/fact_09.gif";
		facts[9] = "images/facts/fact_10.gif";
		facts[10] = "images/facts/fact_11.gif";
		facts[11] = "images/facts/fact_12.gif";
		facts[12] = "images/facts/fact_13.gif";
		facts[13] = "images/facts/fact_14.gif";
		facts[14] = "images/facts/fact_15.gif";
		facts[15] = "images/facts/fact_16.gif";
		facts[16] = "images/facts/fact_17.gif";
		
		/* - Added Jul 20, 2008 - facts 7 - 14 below
		- Using 100-percent biodiesel (B100) eliminates all of the sulfur emissions associated with conventional diesel, cuts emissions of carbon monoxide and smog-producing particulate matter (PMs) almost in half, and reduces hydrocarbon emissions by between 75 and 92 percent. 
-	Using B100 reduces the emissions of carbon dioxide-the main greenhouse gas causing global warming-by 92 percent.
-	As a cleaner burning fuel, biodiesel is better for a car's engine than conventional diesel, providing greater lubrication and leaving fewer particulate deposits behind. Biodiesel's high ignition point (177°C vs. -42°C for gasoline) makes it a safer fuel. 
-	Biodiesel is biodegradable and considered nontoxic by the Environmental Protection Agency. 
-	All diesel vehicles have 20- to 30-percent higher fuel economies than comparable gasoline vehicles.
-	Vehicles have similar horsepower and torque as conventional diesel when running on biodiesel. 
-	Biodiesel has better engine performance and lubrication.
-	Biodiesel does not come from the tar sands
*/
		
		var i = Math.ceil(16*Math.random());
		//document.getElementById("fact").firstChild.nodeValue = facts[i];
		document.getElementById("fact").src = facts[i];
	}
	
	function onload_change() {
		changeTestimonial();
		changeFact();
	}
	
	//setInterval('onload_change()', 8000);
	setInterval('changeTestimonial()', 5000);
	setInterval('changeFact()', 5000);
	
//-->