/*	-------------------------------------------------------------
	Random Testimonials
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	Filename:			testimonials.js	
	Version:			1.0
	Date:				March 2007
	--------------------------------------------------------------  */

	
	// For each new testimonial, add quote and author. Be sure to increase the Array.
	quotes = new Array(6); // 
	authors = new Array(6);
	quotes[0] = "The perfect addition to our wedding!";
	authors[0] = "Tim and Terese McIlvain";
	
	quotes[1] = "Thank you for playing at out wedding, you helped make the day special...";
	authors[1] = "Kerri and Steve";
	
	quotes[2] = "Thank you for helping make my daughters' wedding special!";
	authors[2] = "Kathy L.";
	
	quotes[3] = "Dear Bruce,  Thank you for your talent and professionalism.  You played an important part in Megan and Johns' wedding and we are grateful.";
	authors[3] = "Pierce and Claudia";
	
	quotes[4] = "Thank you so much for your participation in out Easter activities! You really helped make this the most memorable Easter on record in Seaside.";
	authors[4] = "The town of Seaside FL";
	
	quotes[5] = "Bruce, on behalf of both of our families, John and myself, we want to thank you from the bottom of our hearts for doing such an exceptional job-- you truly made our wedding day so special with your extraordinary talent.";
	authors[5] = "Megan E.";
	
	quotes[6] = "…you're one of the finest pipers I've heard -- technically super-competent, but your music has such breadth and understanding! Your ornamentation fits seamlessly into the melodic line, and you spin gorgeous phrases. I hope to hear you many times in the future.";
	authors[6] = "Mark Russakov";


	
	
	//DO NOT EDIT BELOW THIS LINE!
	index = Math.floor(Math.random() * quotes.length);
	
	//display the quotation
	document.write("<span class=\"testimonial_text\">\"" + quotes[index] + "\"</span>");
	document.write("<span class=\"testimonial_author\"> ~ " + authors[index] + "</span>");
	
	//done
