	var i = 0;
	testArray = new Array();
	testArray[0]='<p class=\"testimonial\">"If a former maintenance manager of a potato chip factory can earn over a million dollars a year doing this, then so can you."</p><p class=\"author\">&#8212; John Haremza, Blue Diamond</p>';
	testArray[1]='<p class=\"testimonial\">"Successful and unsuccessful people do not vary greatly in their abilities. They vary in their desires to reach their potential."</p><p class=\"author\">&#8212; John Maxwell</p>';
	testArray[2]='<p class=\"testimonial\">"I\'m experiencing the adventure of pursuing my dreams and the joy of reaching them."</p><p class=\"author\">&#8212; Gary Pool, 90K Emerald</p>';
	testArray[3]='<p class=\"testimonial\">"The achievement of your goal is assured the moment you commit yourself to it."</p><p class=\"author\">&#8212; Mack R. Douglas</p>';
	testArray[4]='<p class=\"testimonial\">"Too many people give up on their dreams too early. Magical things happen when you give it time. Now, I\'m living my dream."</p><p class=\"author\">&#8212; Bob Florentine, Emerald</p>';
	testArray[5]='<p class=\"testimonial\">"The sign on the door of opportunity reads PUSH."</p><p class=\"author\">&#8212; Unknown</p>';
	testArray[6]='<p class=\"testimonial\">"Amazingly, for someone joining Waiora today, the timing is even better."</p><p class=\"author\">&#8212; Korey & Renae Johnson, Double Diamond</p>';
	testArray[7]='<p class=\"testimonial\">"One secret of success in life is to be ready for opportunity when it comes."</p><p class=\"author\">&#8212; Benjamin Disraeli</p>';
	testArray[8]='<p class=\"testimonial\">"Today, I make a high six figure income and am creating freedom in every sense of the word."</p><p class=\"author\">&#8212; Dean Nunneley, Single Diamond</p>';
	testArray[9]='<p class=\"testimonial\">"Do not wait; the time will never be \'just right\'. Start where you stand."</p><p class=\"author\">&#8212; Napoleon Hill</p>';
	testArray[10]='<p class=\"testimonial\">"I\'m not the only business investor to see the power and potential of network marketing - Warren Buffet and Donald Trump do, too!"</p><p class=\"author\">&#8212; Don Szymik, Diamond</p>';
	testArray[11]='<p class=\"testimonial\">"Be ready when opportunity comes. Luck is the time when preparation and opportunity meet."</p><p class=\"author\">&#8212; Roy D. Chapin, Jr.</p>';
	testArray[12]='<p class=\"testimonial\">"Waiora has all the hallmarks to be a billion dollar company."</p><p class=\"author\">&#8212; Dan Kinnison, Single Diamond</p>';
	testArray[13]='<p class=\"testimonial\">"In a time of rapid change, standing still is the most dangerous course of action."</p><p class=\"author\">&#8212; Brian Tracy</p>';
	testArray[14]='<p class=\"testimonial\">"There\'s nothing more exhilarating than knowing your future is secure because it rests in your own hands."</p><p class=\"author\">&#8212; Nancy Rominger, Emerald</p>';
	testArray[15]='<p class=\"testimonial\">"Success usually comes to those who are too busy to be looking for it."</p><p class=\"author\">&#8212; Henry David Thoreau</p>';
	testArray[16]='<p class=\"testimonial\">"Because of Waiora, I no longer have to choose between my family and my job."</p><p class=\"author\">&#8212; Donna Valdes, 90K Emerald</p>';
	testArray[17]='<p class=\"testimonial\">"The ladder of success is best climbed by stepping on the rungs of opportunity."</p><p class=\"author\">&#8212; Ayn Rand</p>';
	testArray[18]='<p class=\"testimonial\">"The best way to predict the future is to create it."</p><p class=\"author\">&#8212; Peter Drucker</p>';
	testArray[19]='<p class=\"testimonial\">"Don\'t be afraid of the space between your dreams and reality. If you can dream it you can make it so."</p><p class=\"author\">&#8212; Belva Davis</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);
	});

