//---------------------------------------------------------------------------------------------------
// Copyright © 2002 Bushman Technologies (http://www.bushmantech.net)								-
// TERMS :	You may not remove above copyright statement. The rest of this message may be deleted.	-
//			You may not remove the link to Qyoteserver homepage in the generated statement without 	-
//			consent from Bushman Technologies.														-
// Quotes from : http://quoteserver.bushmantech.net													-
//---------------------------------------------------------------------------------------------------
// Author(s): Richard de Breyn						-
//---------------------------------------------------
// INCLUDED : 31 quotes.							-
// USAGE 	: Include this file into HTML document.	-
//			  In HTML document, include the line:	-
//				<script>putQ();</script>			-
// UPDATES 	: http://www.bushmantech.net			-
//---------------------------------------------------
var qArr = new Array();
// Add quotes here.

qArr[00] = ["<span class=testimonial2> Joann B. (Amanda-6 & Janine-4) Apple Tree Avon </span>", "<span class=testimonial>&quot;I am very pleased and comfortable with the preschool education my daughters have received at Apple Tree. They were definitely socially and intellectually prepared for school! Thank you!&quot;</span>"];

qArr[01] = ["<span class=testimonial2>Sally & Jim S. (Reed-5 & Ian-1) Apple Tree Avon </span>", "<span class=testimonial>&quot;Our fifteen month-old was taught sign language for &quot;more&quot; and &quot;all done&quot; when eating. It was a huge help at mealtime. Our five year-old has been at Apple Tree since he was ten weeks. His best friends are here. He learned his manners and learned about sharing at a very early age.&quot;</span>"];

qArr[02] = ["<span class=testimonial2>Allison B. (Samantha-3 & Maryia-8) Apple Tree Granby</span>", "<span class=testimonial>&quot;The care given to my child at Apple Tree Children's Center is phenomenal. My daughter has learned skills from socializing to potty training, to educational skills - all age appropriate. The staff has always been very accommodating to our family needs. We feel our children are safe and in good hands at Apple Tree Children's Center.&quot;</span>"];

qArr[03] = ["<span class=testimonial2>Hope W. (Ana-5) Apple Tree Granby</span>", "<span class=testimonial>&quot;Ana adores coming to Apple Tree Children's Center, and looks forward to seeing her friends and teachers everyday. This is something she has never found before.&quot;</span>"];

qArr[04] = ["<span class=testimonial2>Donna Y. (Jonah-6) Apple Tree Granby</span>", "<span class=testimonial>&quot;A warm, loving environment for children, where everyone is treated like family!&quot;</span>"];


qUsed = new Array();

function BTJSputQ(){
	x=gUQ();
	document.open();
 	document.write(qArr[x][1]+"<BR>"+qArr[x][0]+" ");
	document.close();
}

function gUQ(){
	z=false;x=0;
	for(var i=0;i<1;){x=Math.floor(Math.random()*(qArr.length));if(checkIt(x)) i = 1;}
	qUsed[qUsed.length] = x;return x;
}

function checkIt(val){
	for(i=0;i<qUsed.length;i++){if(qUsed[i]==val){return false;}}
	return true;
}

