var myquotes = new Array(
	'<table width=498 border=1 cellspacing=0 cellpadding=6 style=border-collapse:collapse; border-color:#999><tr><td><img src=images/testimonial_RolandKickinger.jpg alt=Roland Kickinger width=146 height=137 hspace=10 vspace=0 align=left /><p class=testimonial12><br />Dr. Wendy will give you the knowledge and take you to the path of a lifestyle filled with happiness and fulfillment.  Invest in your health and stay wealthy for the rest of your life.</p><p align=right class=testimonialAuthor>Roland Kickinger<br />Actor/Bodybuilder/Humanitarian</p></td></tr></table>',
	'<table width=498 border=1 cellspacing=0 cellpadding=6 style=border-collapse:collapse; border-color:#999><tr><td><img src=images/testimonial_CarmenPalumbo.jpg alt=Carmen Palumbo width=146 height=137 hspace=10 vspace=0 align=left /><p><span class=testimonial12>Dr. Wendy Schauer relays the understanding of &ldquo;Total&rdquo; Wellness to her clients in a way that is relatable and eye opening.</span></p><p align=right><span class=testimonialAuthor> Carmen Palumbo<br />Actress/Spokesperson/Model</span></p></td></tr></table>',
	'<table width=498 border=1 cellspacing=0 cellpadding=6 style=border-collapse:collapse; border-color:#999><tr><td><img src=images/testimonial_MarkEdgarStephen.jpg alt=Mark Edgar Stephen width=146 height=137 hspace=10 vspace=0 align=left /><p><span class=testimonial12>Dr. Wendy possesses a level of commitment, intelligence, common sense, and humanity that allows her to share her message of wellness in a way that can be understood and applied by anyone.</span></p><p align=right class=testimonialAuthor>Mark Edgar Stephens<br />Executive Coach - Author</p></td></tr></table>',
	'<table width=498 border=1 cellspacing=0 cellpadding=6 style=border-collapse:collapse; border-color:#999><tr><td><img src=images/testimonial_LisaGuerrero.jpg alt=Lisa Guerrero width=146 height=137 hspace=10 vspace=0 align=left /><p class=testimonial12>We live in a quick fix society with fad diets, 3 day cleanses, and lunchtime facelifts. The beauty of Dr. Wendy Schauer\'s work is that it approaches well being as a lifetime goal, not an overnight antidote.</p><p align=right class=testimonialAuthor>Lisa Guerrero<br />Broadcaster - Actress</p></td></tr></table>',
	'<table width=498 border=1 cellspacing=0 cellpadding=6 style=border-collapse:collapse; border-color:#999><tr><td><img src=images/testimonial_PavelTsatsoulin.jpg alt=Pavel Tsatsoulin width=146 height=137 hspace=10 vspace=0 align=left /><p class=testimonial12>&nbsp;</p><p class=testimonial12>Dr. Wendy Schauer is on a relentless mission to provide you with a total package for health.</p><p align=right class=testimonialAuthor>Pavel Tsatsouline<br />Author - Enter The KettleBell!</p></td></tr></table>'// Leave the last quote without a comma at the end
	);

function rotatequote()
{
	thequote = myquotes.shift(); //Pull the top one
	myquotes.push(thequote); //And add it back to the end
	
	document.getElementById('quotetext').innerHTML = thequote;
	// This rotates the quote every 10 seconds.
	// Replace 10000 with (the number of seconds you want) * 1000
	t=setTimeout("rotatequote()",10000);
}

// Start the first rotation.
rotatequote();
