function random_testimonial() {
	var random_testimonial = new Array();
	
	// Set the number of text strings to zero to start
	var number = 0;
	
	// Incremental list of all possible Text
	random_testimonial[number++] = '<p>"Listening to this station adds beauty to my day and puts a smile on my face!"</p><p class="memberQuote">&mdash;Margaret, Delray Beach, FL</p>';
	random_testimonial[number++] = '<p>"I listen to your station every day and tell everyone I know you are on the air. Thank you for bringing Classical Music back to South Florida radio."</p><p class="memberQuote">&mdash;Lynne, Ft. Lauderdale, FL</p>';
	random_testimonial[number++] = '<p>"My financial contribution is an easy way for me to support a better quality of life for myself and all my neighbors in South Florida."</p><p class="memberQuote">&mdash;Daniel, Fort Lauderdale, FL</p>';
	random_testimonial[number++] = '<p>"I feel like somebody gave me an unexpected gift when I discovered your station."</p><p class="memberQuote">&mdash;Joan and Gene, Boynton Beach, FL</p>';
	random_testimonial[number++] = '<p>"I am really pleased to have a world class classical radio station in South Florida - keep doing an excellent job!"</p><p class="memberQuote">&mdash;Francisco, Miami, FL</p>';
	random_testimonial[number++] = '<p>"I love the music and no commercials!"</p><p class="memberQuote">&mdash;Rae, Miami, FL</p>';
	
	// Create a random number with limits based on the number
	// of possible random text strings
	var random_number = Math.floor(Math.random() * number);
	
	// Write out the random text to the browser
	document.write(random_testimonial[random_number]);
}
