//  Testimonials array

tArray = new Array();
tArray[0] = new Array();
tArray[0]["delay"] = "7000";
tArray[0]["quote"] = "Marvelous, Marvelous, Marvelous! That is how I feel about my new Cody pool and deck. All of the people involved in the undertaking of this major project have been wonderful to work with and did an excellent job";
tArray[0]["name"] = "R.Haley";
tArray[0]["company"] = "Austin, TX";

tArray[1] = new Array();
tArray[1]["delay"] = "9000";
tArray[1]["quote"] = "George &amp; Hans were both great! The pool is unbelievable. Every single issue or concern was addressed during construction. I also appreciate Mike Church's (owner) personal attention It's like a resort vacation in my own backyard";
tArray[1]["name"] = "A.Yost";
tArray[1]["company"] = "Jonestown, TX";

tArray[2] = new Array();
tArray[2]["delay"] = "11000";
tArray[2]["quote"] = "Russ Parmlee and Hans both listened to what I had to say. Customer attention was fantastic. I found a pool company that cares about customer satisfaction. Again, thanks Russ and Hans, your employees like working for you. That can make a big impression on a customer.";
tArray[2]["name"] = "R.Schnaiter";
tArray[2]["company"] = "Leander, TX";

tArray[3] = new Array();
tArray[3]["delay"] = "14000";
tArray[3]["quote"] = "Bob was so incredibly attentive to all our questions and went above and beyond to provide us with the exact pool we wanted. We don't just have a pool in our backyard, we have an extension of our home. We feel we got more than our money's worth. We have a high quality, custom pool for a price that puts a smile on our face.";
tArray[3]["name"] = "R.Parker";
tArray[3]["company"] = "Georgetown, TX";

tArray[4] = new Array();
tArray[4]["delay"] = "15000";
tArray[4]["quote"] = "The craftmanship was really good. The quality was good. You could tell their people really cared about what they were doing.";
tArray[4]["name"] = "M. Laramore";
tArray[4]["company"] = "Liberty Hill, TX";

tArray[5] = new Array();
tArray[5]["delay"] = "14000";
tArray[5]["quote"] = "Without their expertise, we would've had a pool that was less than what we wanted, so we're really thrilled with the results.";
tArray[5]["name"] = "L.Burdick";
tArray[5]["company"] = "Austin, TX";




var nNum = 0;
var oldskool = false;

if (document.all||document.getElementById) {
	document.write('<span id="QuoteIE" style="width:342px"></span>');
}
else if (document.layers) {
	document.write('<ilayer id="QuoteNSParent"><layer width="240" id="QuoteNSChild"></layer></ilayer>');
	}
else { oldskool = true; ShowQuote();
}

nothing = ShowQuote();

function ShowQuote() {
	rNum = Math.floor((Math.random()*tArray.length)-.01);
	if (rNum < 0) {rNum=0;}
	
	qblock ='<table border="0" cellpadding="2" cellspacing="0"><tr><td align=left><font face="Arial, Helvetica, sans-serif" size="1px" color="#000000"><span class="testimony">&quot;';
	qblock += tArray[rNum]["quote"];
	qblock += '&quot;</span></font></td></tr>';
	qblock +='<tr><td align=left><font face="Arial, Helvetica, sans-serif" size="1px" color="#000000">';
	qblock += tArray[rNum]["name"];
	qblock += ', '+ tArray[rNum]["company"];
	qblock += '</font></td></tr></table>';
	
	if (document.layers) {
		qpos = document.QuoteNSParent;
		qtemp= qpos.document.QuoteNSChild;
		qtemp.document.write(qblock);
		qtemp.document.close();
	} else if (document.all) {
		QuoteIE.innerHTML = qblock;
	} else if (document.getElementById) {
		document.getElementById("QuoteIE").innerHTML = qblock;
	}


	if (!oldskool) {
		setTimeout("ShowQuote()",tArray[rNum]["delay"]);
	}

}





