var qArr = new Array();
// Add quotes here.
qArr[00] = ["Jaffle Design is experienced in", "developing effective solutions for powerful", "and efficient communication"];
qArr[01] = ["Jaffle Design provides"," unqiue communication solutions,","with a focus on online solutions"];
qArr[02] = ["We believe that communication and management discipline","is the deciding factor","in the success of our projects"];
qArr[03] = ["We make a commitment","to the success of our clients,","with the intention of getting results together"];
qArr[04] = ["Experts at Jaffle design are making ","every effort to keep up with current trends","in the Internet industry"];

qUsed = new Array();

function BTJSputQ(){
	x=gUQ();
	document.open();
 	document.write("<span class='quoteOne'>"+qArr[x][0]+"</span><BR><span class='quoteTwo'>"+qArr[x][1]+"</span><BR><span class='quoteOne'>"+qArr[x][2]+"</span>");
	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;
}
