$(document).ready( function()
{
	$(".testimonials").html(testimon_var[testimon_var[0]]);
	window.setInterval(load_testimon, 10000);
});

var testimon_var = new Array();
testimon_var[0] = 1;
testimon_var[1] = "<font size=\"2\" color=\"#7C6E57\"><i><b>The material was very informative and concise in all the required areas. I highly recommend you. Being able to call an instructor on the weekends while studying was vital. Many thanks to both your company and your instructors. I could not have done it without you.</b></i><br><span style=\"line-height: 3px;\"><br></span></font><font size=\"3\" color=\"black\">~ S Pool</font>";
testimon_var[2] = "<font size=\"2\" color=\"#7C6E57\"><i><b>I just wanted to let you know that I took your course, passed and received my Certification Card. The course was great and I loved being able to work at home and at my own pace - since I was holding a full time job during the day that was very Important. Thanks again.</b></i><br><span style=\"line-height: 3px;\"><br></span></font><font size=\"3\" color=\"black\">~ J Fate</font>";
testimon_var[3] = "<font size=\"2\" color=\"#7C6E57\"><i><b>Passed in December 1st time. Test was hard with little time to look up answers. Your course helped me to be organized and be able to reference information quite easily. Good luck to your future students. Thank you for my success.</b></i><br><span style=\"line-height: 3px;\"><br></span></font><font size=\"3\" color=\"black\">~ J Acosta</font>";
testimon_var[4] = "<font size=\"2\" color=\"#7C6E57\"><i><b>I strongly recommend your self study learning program. I followed your study program to the letter and passed my exam first time out in December. I'm not going to say that it wasn't difficult, because it was by far one of the hardest tests I've taken. Good Luck!</b></i><br><span style=\"line-height: 3px;\"><br></span></font><font size=\"3\" color=\"black\">~ R Godinez</font>";
testimon_var[5] = "<font size=\"2\" color=\"#7C6E57\"><i><b>I could not have done it without this program. Work and family take up just about all of my time. Never would have happened with out this course.... Many Thanks...  </b></i><br><span style=\"line-height: 3px;\"><br></span></font><font size=\"3\" color=\"black\">~ B Smith</font>";

function load_testimon()
{
	$(".testimonials").fadeOut("fast", function()
	{
		$(".testimonials").html(testimon_var[testimon_var[0]]).fadeIn("fast");
	});
	testimon_var[0]++;
	
	if (testimon_var[0] == 6)
	{
		testimon_var[0] = 1;
	}
	
	return;
}
