<!--
var testimonials = new Array(
	new Array("Your coffee was enjoyed by all, even my husband and Aunt, who no longer drink coffee, truly enjoyed it.  Looks like your family has a good thing going!!!!","S.P.","Atlanta, GA"),
	new Array("Customer Service is always prompt and efficient; they really seem to care that you are completely satisfied and pleased with their product.  We are so glad we found the Brainy Bean!", "K.W.", "Roswell , GA"),
	new Array("We had a family gathering this weekend and served both coffees.... everyone loved them and really enjoyed seeing the label on the package... I think we've a hit on our hands!","L.B.", "West Bath, ME"),
	new Array("I will always order from Brainy Bean in the future!!  The customer service I received was superb!!","K.S.","Ellicott City, MD"),
	new Array("Thank you so much for everything that you have done to take care of my order. I appreciate it.","S.H.","Hill City, S.D."),
	new Array("Thank you so much for your excellent service.","D.S.","Yuma, AZ"),
	new Array("I can not thank you enough.... I so much appreciate your customer service.","H.H.","Covina, CA"));
	
var old = 0;
var current = 0;

function init()
{
	//if (!document.images) return;
	
	while (current == old) {
		current = Math.floor(Math.random()*testimonials.length);
	}

	old = current;
	
	var obj_quote = document.getElementById("testimonials_quote");
	var obj_company = document.getElementById("testimonials_company");
	var obj_address = document.getElementById("testimonials_address");
	
	obj_quote.innerText = testimonials[current][0];
	obj_company.innerText = testimonials[current][1];
	obj_address.innerText = testimonials[current][2];

	setTimeout('init()',8000);
}

// -->