// JavaScript Document
<!--
var testimonial_timeout;
var testimonial_time = 5500;
var testimonial_index = 0;
/*
Included in the index page to dynamically define these arrays
var testimonial_index_counter = 0;
var testimonial_title = new Array();
testimonial_title[testimonial_index_counter++] = 'Testimonial Title 1';
testimonial_title[testimonial_index_counter++] = 'Testimonial Title 2';

var testimonial_index_counter = 0;
var testimonial_content = new Array();
testimonial_content[testimonial_index_counter++] = 'Testimonial Content 1';
testimonial_content[testimonial_index_counter++] = 'Testimonial Content 2';
*/
function runTestimonial()
{
	var oTitle = document.getElementById('testimonial_title');
	var oContent = document.getElementById('testimonial_content');

	oTitle.innerHTML = testimonial_title[testimonial_index];
	oContent.innerHTML = testimonial_content[testimonial_index];
	
	testimonial_index = testimonial_index + 1
	if ( testimonial_index > (testimonial_count -1 ) ) testimonial_index = 0;	// start over
	testimonial_timeout = setTimeout('runTestimonial()', testimonial_time);		// set timeout
}
//-->
