	var i = 0;
	testArray = new Array();
	testArray[0]='<p class=\"testimonial\">In 2000 nearly two billon pounds of air emissions were pumped into the atmosphere (EPA).</p>';
	testArray[1]='<p class=\"testimonial\">Coal-fired power plants spew sulfates, nitrates and mercury into the air which is linked to as many as 20,000 premature deaths each year</p>';
	testArray[2]='<p class=\"testimonial\">Of the 38,000 varieties of mushrooms, the Agaricus Blazei mushrooms have the most powerful healing properties.</p>';
	testArray[3]='<p class=\"testimonial\">It\'s estimated that one million people die because of pollution in Asia each year.</p>';
	testArray[4]='<p class=\"testimonial\">Less than one in 10 adults consume the Recommended Daily Allowance (RDA) of vitamins and minerals through servings of fruits and vegetables.</p>';
	testArray[5]='<p class=\"testimonial\">By age 50, 30 percent of our cellular protein has been turned into \"rusty\" junk by free radical attacks.</p>';
	testArray[6]='<p class=\"testimonial\">ORAC value (Oxygen Radical Absorbent Capacity) is the scientific standard for measuring the antioxidant effectiveness of food.</p>';
	testArray[7]='<p class=\"testimonial\">Today, Agaricus blazei mushrooms are used in Asian countries as a natural therapy in the form of a medicinal extract.</p>';
	testArray[8]='<p class=\"testimonial\">Just reducing environmental carcinogens alone, would save at least 50,000 lives from cancer annually.</p>';
	testArray[9]='<p class=\"testimonial\">The accumulation of toxins wreaks havoc on your cells and organs, contributing to illness and disrupting your body\'s ability to absorb vital, life-sustaining vitamins and nutrients.</p>';
	testArray[10]='<p class=\"testimonial\">Zeolites are natural volcanic minerals with a unique, complex crystalline structure, which works at the cellular level trapping, heavy metals and toxins.</p>';
	testArray[11]='<p class=\"testimonial\">The American Heart Association recommends a healthy diet include 25 to 35 grams of fiber each day.</p>';
	testArray[12]='<p class=\"testimonial\">Goji berries are rich in antioxidants, particularly carotenoids such as beta-carotene and zeaxanthin that help to protect the liver,boost immune function, improve circulation and promote longevity.</p>';
	testArray[13]='<p class=\"testimonial\">Over the years, technological advancements fueld by consumer demand have significantly weakened the micro-nutrient content of our food.</p>';
	testArray[14]='<p class=\"testimonial\">Powerful antioxidants like green tea, grape seed extract and Maitake mushroom all contribute to overall health and well being.</p>';
	testArray[15]='<p class=\"testimonial\">Arabinoxylan, found in Sasa bamboo, helps bolster the Agaricus blazei\'s ability to increase natural killer cells and activate macrophages.</p>';
	testArray[16]='<p class=\"testimonial\">Mushrooms have been used medicinally for centuries by numerous cultures to heal the mind, body and soul.</p>';
	testArray[17]='<p class=\"testimonial\">Bamboo is not only an incredible antioxidant, it has been used to keep sushi fresh for days without refrigeration.</p>';
	testArray[18]='<p class=\"testimonial\">Beta glucan, found in the Agaricus blazei mushroom, is a unique compound that benefits an imbalanced immune system.</p>';
	testArray[19]='<p class=\"testimonial\">"The first wealth is health."</p><p class=\"author\">&#8212; Ralph Waldo Emerson</p>';
	function changetest() {
		i=i+1;
		$("#promo_test_text").fadeOut("slow", function(){
			$(this).html(testArray[i]);
			$(this).fadeIn("slow");
		});
		//document.getElementById("promo_test_text").innerHTML = testArray[i];
		if(i==testArray.length) { i=0; }
	}    
	$(document).ready(function(){
		$("#promo_test_text").html(testArray[i]);
		setInterval('changetest()',15000);
	});