//  Testimonials array

tArray = new Array();
tArray[0] = new Array();
tArray[0]["delay"] = "11000";
tArray[0]["quote"] = "We are enjoying our pool tremendously, thanks to you guys! We get lots of compliments from everyone who gets to see it, and that's a lot of people! Working with Nadia, Jason and Jarrod made it fun, easy and stress-free.";
tArray[0]["name"] = "E. and R. Nazario";
tArray[0]["company"] = "Clermont, FL";

tArray[1] = new Array();
tArray[1]["delay"] = "11000";
tArray[1]["quote"] = "Jarrod and Marie were both great! The pool renovation is unbelievable. Every single issue or concern was addressed during construction. It's now like a resort vacation in my own backyard";
tArray[1]["name"] = "L.Chaney";
tArray[1]["company"] = "Kissimmee, FL";

tArray[2] = new Array();
tArray[2]["delay"] = "11000";
tArray[2]["quote"] = "I found a pool company that cares about customer satisfaction. Again, thanks Jason and Nadia, your employees like working for you. That can make a big impression on a customer.";
tArray[2]["name"] = "R.Schnaiter";
tArray[2]["company"] = "Orlando, FL";

tArray[3] = new Array();
tArray[3]["delay"] = "11000";
tArray[3]["quote"] = "Jason was so incredibly attentive to all our questions and went above and beyond to provide us with the exact pool we wanted. We feel we got more than our money's worth.";
tArray[3]["name"] = "R.Santiago";
tArray[3]["company"] = "Altamonte Springs, FL";

tArray[4] = new Array();
tArray[4]["delay"] = "11000";
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"] = "K. Gristock";
tArray[4]["company"] = "Clermont, FL";




var nNum = 0;
var oldskool = false;

if (document.all||document.getElementById) {
	document.write('<span id="QuoteIE" style="width:390px; background-color:#ffffff"></span>');
}
else if (document.layers) {
	document.write('<ilayer bgColor="#ffffff" id="QuoteNSParent"><layer width="330" 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="Times New Roman" size="2px" color="#000000"><span class="testimony">&quot;';
	qblock += tArray[rNum]["quote"];
	qblock += '&quot;</span></font></td></tr>';
	qblock +='<tr><td align=left><font face="Times New Roman" size="2px" 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"]);
	}

}





