//---------------------------------------------------------------------------------------------------
// Copyright © 2002 Bushman Technologies (http://www.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] = ["Benjamin Franklin", "When you're finished changing, you're finished."];
qArr[01] = ["Benjamin Franklin", "To be proud of virtue is to poison yourself with the antidote."];
qArr[02] = ["Benjamin Franklin", "He that speaks much, is much mistaken."];
qArr[03] = ["Benjamin Franklin", "An ounce of prevention is worth a pound of cure."];
qArr[04] = ["Benjamin Franklin", "When the well's dry, we know the worth of water."];
qArr[05] = ["Benjamin Franklin", "A spoonful of honey will catch more flies than a gallon of vinegar"];
qArr[06] = ["Benjamin Franklin", "He that goes a borrowing goes a sorrowing."];
qArr[07] = ["Benjamin Franklin", "He that lieth down with dogs, shall rise up with fleas."];
qArr[08] = ["Benjamin Franklin", "Beware of little expenses. A small leak will sink a great ship."];
qArr[09] = ["Benjamin Franklin", "In Greece wise men speak and fools decide."];
qArr[10] = ["Benjamin Franklin", "Diligence is the mother of good luck."];
qArr[11] = ["Benjamin Franklin", "Nothing can be said to be certain except death and taxes"];
qArr[12] = ["Benjamin Franklin", "Remember that time is money."];
qArr[13] = ["Benjamin Franklin", "Early to bed and early to rise makes a man healthy, wealthy and wise"];
qArr[14] = ["Benjamin Franklin", "The absent are never without fault. Nor the present without excuse."];
qArr[15] = ["Benjamin Franklin", "Three may keep a secret, if two of them are dead."];
qArr[16] = ["Benjamin Franklin", "He that falls in love with himself will have no rivals."];
qArr[17] = ["Benjamin Franklin", "Necessity never made a good bargain."];
qArr[18] = ["Benjamin Franklin", "Who is rich? He that rejoices in his Portion."];
qArr[19] = ["Benjamin Franklin", "There was never a good war or a bad peace."];
qArr[20] = ["Benjamin Franklin", "We must all hang together, or assuredly we shall all hang separately."];
qArr[21] = ["Benjamin Franklin", "He that lives upon hope will die fasting."];
qArr[22] = ["Benjamin Franklin", "He that would Fish, must venture his bait."];
qArr[23] = ["Benjamin Franklin", "People who are wrapped up in themselves make small packages."];
qArr[24] = ["Benjamin Franklin", "He that drinks fast, pays slow."];
qArr[25] = ["Benjamin Franklin", "Love your Neighbour; yet don't pull down your Hedge."];
qArr[26] = ["Benjamin Franklin", "When there's no Law, there's no Bread."];
qArr[27] = ["Benjamin Franklin", "Well done is better than well said."];
qArr[28] = ["Benjamin Franklin", "To err is human, to repent divine; to persist devilish."];
qArr[29] = ["Benjamin Franklin", "A country man between two lawyers, is like a fish between two cats."];
qArr[30] = ["Benjamin Franklin", "Who has deceiv'd thee so oft as thy self?"];
qUsed = new Array();

function BTJSputQ(){
	x=gUQ();
	document.open();
 	document.write(qArr[x][1]+" -"+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;
}
