/*--- Get random quote from Array 2 ---*/
/* Array 2 is Aphorisms */
/* total number of arrays MUST always be divisible by 3 */

function getquote2() {

var quotes2 = new Array;

quotes2.push("You don't get points for being right when you're ahead of your time.");

quotes2.push("The road to success is most likely paved. It's highly unlikely <BR>you did any of the paving.");

quotes2.push("The distance between arrogance and ignorance is much less than <BR>even those few letters.");

quotes2.push("A question for those who think they're sitting on top of the world: <BR>Aren't you concerned it will go off?");

quotes2.push("The secret of goodness is kindness, that of kindness is courtesy, <BR>and that of courtesy is civility.");

quotes2.push("Bigger is always better, we think, except for things electronic.<BR>");

quotes2.push("Backroom deals: not-so-clean hands washing each other.");

quotes2.push("To fit in nowhere seems a curse, but isn't it worse &#151;&#151; <BR>to fit in everywhere?");

quotes2.push("Not enough hours in the day &#151;&#151; but far too many at night.");

quotes2.push("A little knowledge is not only dangerous, it can be very annoying.<BR>");

quotes2.push("Without ambiguity, there is no <I>possibility</I>.");

quotes2.push("What were once the top of heap of blue chip stocks are now <BR>more like buffalo chips.");

quotes2.push("Wisdom is like art: If you can't make the really good stuff, <BR>you have to collect it.");

quotes2.push("There is no rest for the traveler, only pauses on the path.");

quotes2.push("A reached destination is really the beginning of a new path.");

quotes2.push("The more we are connected, the less we are reflective.");

quotes2.push("By our nature we over-simplify our selves.");

quotes2.push("If yesterday is so important that you've left no room for tomorrow, <BR>you probably weren't alive today.");

quotes2.push("If we are anything, we are the universe in search of itself.");

quotes2.push("Wading through excessive advertising feels like <BR>traversing minefields for the mind.");

quotes2.push("There are no ends, only additional consequences <BR>engendering new problems.");

quotes2.push("It's not enough that some people have it all wrong; it's that they feel <BR>they have to hit other people over the head with it.");

quotes2.push("The familiarity that for some can breed contempt, <BR>for others breeds contentment.");

quotes2.push("The only thing more foolish than being in love is being in love in vain.");

quotes2.push("A really good rule for editing: when in doubt, cut it out.");


//THE FOLLOWING FOUR LINES ARE FOR TESTING ONLY
//maxlength = quotes2.length;
//document.write((next+1)+"/");
//document.write((maxlength)+ ': '+ "<BR>");
//document.write((quotes2[next]));


//RESTORE THIS ONCE TESTING COMPLETE
document.write(quotes2[(Math.floor(Math.random() * quotes2.length))]);

}

/*--- EndOfFile ---*/
