	var i = 0;
	testArray = new Array();
	testArray[0]='<p class=\"testimonial\">"Network marketing has proven itself to be a viable and rewarding source of income."</p><p class=\"author\">&#8212; Donald Trump</p>';
        testArray[1]='<p class=\"testimonial\">Baby Boomers have the most spending power and recognition of trends that are influencing and shaping the way we live today.</p>';
	testArray[2]='<p class=\"testimonial\">"Direct selling provides an unparalleled opportunity for millions of people to take responsibility for their own economic wellness and create long-term financial stability."</p><p class=\"author\">&#8212; Paul Zane Pilzer</p>';
	testArray[3]='<p class=\"testimonial\">"Don\'t laugh - $100 billion a year is serious business."</p><p class=\"author\">&#8212; Zig Ziglar on network marketing</p>';
	testArray[4]='<p class=\"testimonial\">Currently more than $500 billion is spent yearly on wellness.</p>';
	testArray[5]='<p class=\"testimonial\">One out of every six people in Japan participates in network marketing and the number of active distributors in the US alone has doubled, just within the past seven years.</p>';
        testArray[6]='<p class=\"testimonial\">The direct selling market current generates more than $85 billion globally each year.</p>';
	testArray[7]='<p class=\"testimonial\">"There are no such things as limits to growth, because there are no limits on the human capacity for intelligence, imagination and wonder."</p><p class=\"author\">&#8212; Ronald Reagan</p>';
	testArray[8]='<p class=\"testimonial\">"You can get everything in life you want if you will just help enough other people get what they want."</p><p class=\"author\">&#8212; Zig Ziglar on network marketing</p>';
        testArray[9]='<p class=\"testimonial\">World famous business tycoon, Warren Buffet\'s, largest acquisition in the last few years was a network marketing company.</p>';
	testArray[10]='<p class=\"testimonial\">"Financial freedom is our birthright, rather than the "slave walk" of the Monday through Friday grind."</p><p class=\"author\">&#8212; Suze Orman</p>';
	testArray[11]='<p class=\"testimonial\">Paul Pilzer projects that over the next 10 years, the US economy will create ten million new millionaires and that many of them will be created in network marketing.</p>';
	testArray[12]='<p class=\"testimonial\">"The rules have changed. You can no longer rely on your employer or your government to take care of you."</p><p class=\"author\">&#8212; Robert Kiyosaki</p>';
	testArray[13]='<p class=\"testimonial\">People are becoming numb to the marketing of major companies; they would rather deal with people they know or know of.</p>';
	testArray[14]='<p class=\"testimonial\">"I would rather earn 1 percent of 100 people\'s efforts than 100 percent of my own efforts."</p><p class=\"author\">&#8212; J. Paul Getty</p>';
	testArray[15]='<p class=\"testimonial\">"Many people confuse their profession with their business. To become financially secure, people need to mind their own business."</p><p class=\"author\">&#8212; Robert Kiyosaki</p>';
	testArray[16]='<p class=\"testimonial\">"Seventy-four percent of all self-made millionaires in America today made their fortune by building their own successful businesses."</p><p class=\"author\">&#8212; Brian Tracy</p>';
	testArray[17]='<p class=\"testimonial\">"Wellness is the industry in which the fortunes of the new millennium will be created and distribution will be where most of that wealth occurs."</p><p class=\"author\">&#8212; Paul Zane Pilzer</p>';
	testArray[18]='<p class=\"testimonial\">"It marks a big step in your development when you come to realize that other people can help you do a better job than you can do alone."</p><p class=\"author\">&#8212; Andrew Carnegie</p>';
	testArray[19]='<p class=\"testimonial\">"If I had to do it all over again, rather than build an old style type of business,I would have started building a network marketing business."</p><p class=\"author\">&#8212; Donald Trump and Robert Kiyosaki</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);
	});





