// add onload listener
if(window.addEventListener) {
	window.addEventListener("load",function(){setInterval("rotateTestimonial()",15000);},false);
}
else if(window.attachEvent) {
	window.attachEvent("onload",function(){setInterval("rotateTestimonial()",15000);});
}		

// set up arrays
var curPos		= 0;
var imgArray 	= new Array();
	imgArray[0]	= "/images/tPic_1.jpg";
	imgArray[1]	= "/images/tPic_2.jpg";
	imgArray[2]	= "/images/tPic_3.jpg";
	imgArray[3]	= "/images/tPic_4.jpg";
	imgArray[4]	= "/images/tPic_5.jpg";
var tstArray 	= new Array();
	tstArray[0] = "I wanted to let you know how much I enjoyed yesterday. It was all I could imagine and more. Being amongst the clouds and standing still in the sky! Wow, how cool is that? Thank you for making my birthday present all it could be. Be blessed in all that you endeavor to be.<br><br>Also thank you to Sundance Balloons for extending the certificate.<br>You guys are a class act all the way.<br><br>Viviane";
	tstArray[1] = "We experienced the Sundance Balloon flight last night, and want to thank you for a wonderful experience. We would like to extend a thank you to our pilot and his crew - his sense of humour and professionalism made our flight a pleasure! We had been cancelled a few times, but every minute of it, was worth the wait.<br><br>Thanks again for a great experience, and a memorable evening.<br><br>Cheers,<br>Jill and Mark";
	tstArray[2] = "We were 6 members in our group that booked our ride.<br>We all loved it and are hooked!<br><br>Thanks to John, our pilot, for landing us safely in the smallest empty lot in Winnipeg, and thanks Bob, our chaser for finding us so incredibly fast!<br><br>Regards,<br><br>Lulu and the gang!";
	tstArray[3] = "Last Tuesday 6 family members and I had a Hot Air Balloon flight with your folks in Kitchener. It turned out to be the adventure of a life time and a wonderful memorable family event and we wouldn't have changed a thing.<br>All of our very high expectations were greatly exceeded.<br><br>From the moment we arrived at the launch site until we went home after, we could not have been looked after any better. Thanks for the memory of a lifetime!<br><br>Regards, Peter";
	tstArray[4] = "Hi there, my name is Hannah.<br><br>My boyfriend, David, and I took A beautiful flight with you guys this morning from St. Jacobs. Our pilot was Moses and we had a terrific time.<br><br>I have some wonderful pictures that I'd like to share with you.<br><br>Thank you once again for an awesome experience!<br>Hannah.";

// function to change currently viewed testimonial.
function rotateTestimonial() {
	// if we're at the end reset to zero
	if(curPos+1 >= imgArray.length)
		curPos = 0;
	else 
		curPos++;
	// change the image	
	var tImg 			= document.getElementById("s_Testimonials_pic");
		tImg.src 		= imgArray[curPos];
	// change the text
	var tTxt			= document.getElementById("s_Testimonials_text");
		tTxt.innerHTML 	= tstArray[curPos];
}
