/*--- Get random quote from Array 1 ---*/
/* Array 1 is New2Me */
/* total number of arrays MUST always be divisible by 3 */

function getquote1() {

var quotes1 = new Array;

quotes1.push("Einstein wrote 'Mosaic' as his faith on his job application <BR>for the University of Prague.");

quotes1.push("While in Prague (1911), Einstein was a visitor to the salon of <BR>Bertha Fanta 覧 as was Franz Kafka.");

quotes1.push("20 of the world's fastest growing cities over a million are in China.<BR>");

quotes1.push("Many early U.S. Park Rangers were former Rough Riders.");

quotes1.push("&quot;The Internet runs 12 times faster in Japan than in the US <BR>覧 at almost half the cost.&quot; <I>Wired</I>, July 2009");

quotes1.push("Actor Jimmy Stewart died later on the same day that <BR>Robert Mitchum died.");

quotes1.push("98% of our DNA if often called junk DNA by scientists.");

quotes1.push("Studebaker made a car called &quot;Dictator.&quot; This model began in 1928; apparently, 1937 was its last year.");

quotes1.push("A fifth of liquor holds twenty-five shots.");

quotes1.push("The word &quot;quarantine&quot; comes from the Italian <I>quaranta</I><BR> 覧 a period of forty days.");

quotes1.push("The 80/20 rule: 80% of our problems come from 20% (or less) <BR>of our population.");

quotes1.push("Shellac records lasted a lot longer than vinyl.");

quotes1.push("One million atoms will fit side-by-side in the period at the <BR>end of a sentence.");

quotes1.push("In 1974, Florida had two (2) area codes; by 2003, it had twenty (20).");

quotes1.push("Thomas Jefferson kept a tiny notebook made of easily erasable <BR>ivory pages.");

quotes1.push("There are many major cities located where the (last) ice age stopped:<BR> New York, Chicago, London, Paris.");

quotes1.push("Thomas Jefferson was a lottery opponent.");

quotes1.push("5% of the doctors are causing 95% of the malpractice problems.<BR>");

quotes1.push("Much of the airtime on TV is just promoting TV.");

quotes1.push("<I>Quis custodiet ipsos custodes</I>: (Latin) Who will guard the guardians?");

quotes1.push("Burma is world's second largest producer of illicit opium.");

quotes1.push("Safford, Arizona (pop. 9000+), has four motels, but gets <BR>95,000 hits on Google.");

quotes1.push("Zombies exhibit everything necessary to be considered conscious<BR>覧 but they're not.");

quotes1.push("Mandala Sexia moth has 300,000 olfactory axions.");

quotes1.push("Dogs 覧 but not wolves 覧 can read our gestures!");

//THE FOLLOWING FOUR LINES ARE FOR TESTING ONLY
//maxlength = quotes1.length;
//document.write((next+1)+"/");
//document.write((maxlength)+ ': '+ "<BR>");
//document.write((quotes1[next]));

//RESTORE THIS ONCE TESTING COMPLETE
document.write(quotes1[(Math.floor(Math.random() * quotes1.length))]);

}

/*--- EndOfFile ---*/
