/* Global Testimonial Rotator */

var testimonials = new Array();
testimonials[0] = "&#8220;The products are fantastic!&#8220;<br><br> Chuck Fox<br> Harberson Swanston RV "
testimonials[1] = " &#8220;Our campers love it! Ill never switch back to the larger brands&#8220;<br><br> Vicky Mead Rocky's<br> Campground "
testimonials[2] = "&#8220;Compass Chemical Products offers a great product at a low price!&#8220;<br><br> Chuck Fox<br> Harberson Swanston RV "
testimonials[3] = "&#8220;The color graphics make a bold statement for your dealership&#8220;<br><br> Eric Porter<br> Porter's R.V.s"
testimonials[4] = "&#8220;Compass Chemical Products, it looks great on the shelf, and thank you, great Job!&#8220;<br><br> Jim Hehrer<br> Annie Rae RV "
testimonials[5] = "&#8220;We benefit from the private labeling and our environment benefits with a safe product.&#8220;<br><br> Vicki Mead<br> Rocky's Campground"
testimonials[6] = "&#8220;Our campers love it! I'll never switch back to the larger brands&#8220;<br><br> Vicky Mead<br> Rocky's Campground "
testimonials[7] = "&#8220;The Enzyme Energy did an excellent job at controlling the odor and breaking down the toilet paper. It left our buses smelling clean and fresh! We tried the others and this one definitely worked the best&#8220;<br><br> John Hibbs<br> Garage Manager<br> Dadds Magic bus, Limousine & Entertainment Tours, Inc.<br> Grand Rapids, MI"
testimonials[8] = "&#8220;I have tried several chemicals in the past six years. In my opinion, Compass Chemical Products Inc. has perfected the formula so that during the hot summer months, I do not have to use twice as much as I had to with other brands to cover the odor. They have a good product at a competitive price.&#8220;<br><br> Trent Stange<br> Owner-Compass Coach<br> Cedar Springs, MI<br> (No Affiliation)<br> Porter's R.V.s "
testimonials[9] = "&#8220;We sell more private labeled products than major brands! We are very happy with Compass Chemical Products, Inc.&#8220;<br><br> Wayne General RV<br> (Largest volume RV dealer in the USA) "
testimonials[10] = "&#8220;The Chemicals are high quality, the labels are great, and service is wonderful!&#8220;<br><br> Thomas Guertin<br> Roseville RV Center	"

var ourDelay = 6500;													// set length on delay
var currentTestimonial = Math.floor(Math.random()*testimonials.length)	// start on first image

function getCurrent(){
	var r = currentTestimonial;
	currentTestimonial ++;
	if(currentTestimonial>testimonials.length-1){currentTestimonial=0;}
	return r;
}

function setTestimonial(){
	var i=getCurrent();
	d=document;
	d.getElementById("testimonialDisplay").innerHTML = testimonials[i];
	getDelay();
}

function getDelay(){
	setTimeout('setTestimonial()', ourDelay);
}
