	var i = 0;
	testArray = new Array();
	testArray[0]='<p class=\"testimonial\">"If people believe in themselves, it\'s amazing what they can accomplish."</p><p class=\"author\">&#8212; Sam Walton</p>';
	testArray[1]='<p class=\"testimonial\">"If your actions inspire others to dream more, learn more, do more and become more, you are a leader."</p><p class=\"author\">&#8212; John Quincy Adams</p>';
	testArray[2]='<p class=\"testimonial\">"Waiora&#8221; was the Polynesian goddess of health and longevity. It is also a mythical lake thought to contain the water of life, much like the ancient &#8221;fountain of youth."</p>';
	testArray[3]='<p class=\"testimonial\">Taking its queue from the latest nutritional science, research, clinical trials and published studies, Waiora\'s Scientific Advisory Board combines efficacious amounts of safe, powerful ingredients to bring to market superior anti-aging solutions.</p>';
	testArray[5]='<p class=\"testimonial\">"Waiora has created a niche in the marketplace. They aren\'t just another wellness or juice or vitamin company &#8212; they want to slow aging from the inside out &#8212; solutions that are all&#8212;encompassing."</p><p class=\"author\">&#8212; Sam Walton</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);
	});

