// JavaScript Document
// Home Page(s) Quote js Data file - Loaded in when HTML document 1st loads


// *****************************************************************************************************************
var aQuote = new Array(qNum);					// quote array
var aAuthors = new Array(qNum);					// authors of quote array
// *****************************************************************************************************************


aQuote[0] 	 = '<div align="center"><b>There is no such thing as justice -- in or out of court.<\/b><\/div>';			
aAuthors[0]  = 'Clarence Darrow, 1936';

 
aQuote[1] 	 = '<div align="center"><b>All cruelty springs from weakness.<\/b><\/div>';
aAuthors[1]  = 'Seneca';


aQuote[2] 	 = '<div align="center"><b>The more one comes to know men, the more one comes to admire the dog.<\/b><\/div>';
aAuthors[2]  = 'Joussenel';


aQuote[3] 	 = '<div align="center"><b>Too many people don\'t care what happens so long as it doesn\'t happen to them.<\/b><\/div>'; 
aAuthors[3]  = 'William Howard Taft';


aQuote[4] 	 = '<div align="center"><b>Friends are the family we choose for ourselves.<\/b><\/div>';
aAuthors[4]  = 'Edna Buchanan';


aQuote[5] 	 = '<div align="center"><b>The only good is knowledge, and the only evil is ignorance.<\/b><\/div>';
aAuthors[5]  = 'Diogenes';


aQuote[6] 	 = '<div align="center"><b>Tolerance is the only real test of civilization.<\/b><\/div>';
aAuthors[6]  = 'Arthur Helps';


aQuote[7] 	 = '<div align="center"><b>After all there is but one race --- humanity.<\/b><\/div>';
aAuthors[7]  = 'George Moore';


aQuote[8] 	 = '<div align="center"><b>Your only obligation in any lifetime is to be true to yourself.<\/b><\/div>';
aAuthors[8]  = 'Richard David Bach';


// *****************************************************************************************************************
var qNum = aQuote.length;						// Number of quotes (TOTAL NUMBER OF QUOTES)
var lastQuote = qNum - 1;						// length of quote array - 1
// *****************************************************************************************************************
