/*--- Get random quote from Array 3 ---*/
/* Array 3 is Observations */
/* total number of arrays MUST always be divisible by 3 */

function getquote3() {

var quotes3 = new Array;

quotes3.push("It used to be that men defined themselves by their work, women by <BR>their relationships. It's changed —— but not much.");

quotes3.push("Not unlike the universe first imagined by Einstein, our lives too <BR>are finite and yet without borders.");

quotes3.push("It's no big deal to do something stupid. But it is stupid to deny it. <BR>And even stupider to praise it as right or clever.");

quotes3.push("Good information doesn't just happen; it must be rigorously cultivated.");

quotes3.push("For means, any means, to &quot;justify&quot; any end requires there must be no unintended consequences from either the means or the ends.");

quotes3.push("Anything we label as a &quot;necessary&quot; evil is by definition a slippery slope.");

quotes3.push("When I was nine, the summer loomed as long as eternity. By fall, <BR>it all seemed too quick. Little did I know.");

quotes3.push("The only thing we in the US have in common with foreigners who buy the products of our culture is that we are fellow consumers.");

quotes3.push("The male lament: if you don't want me to fix it, <BR>don't tell me it's a problem.");

quotes3.push("Not so much a gap between rich and poor as a two-tier society. <BR>And it's more about lifestyle than money.");

quotes3.push("Too young, we cannot imagine how we will ever find 500 words <BR>to fill the teacher's impossible task.");

quotes3.push("Reaching maturity, we pour all our knowledge and newfound words <BR>into an interminable excrescence.");

quotes3.push("Having discovered age, we seek 500 good words, aiming at wisdom <BR>but satisfied to be clear and true.");

quotes3.push("A good definition of a Stooge: An accident waiting to happen.");

quotes3.push("Exactly how educational is college if it can't teach its students <BR>not to smoke?");

quotes3.push("America thrives on pseudo-facts fabricated by uninformed opinion. <BR>Or as it is more commonly known, TV news.");

quotes3.push("We must work very hard, consciously and conscientiously, <BR>if we are to succeed in discarding and replacing habits.");

quotes3.push("Sculpture is the eye informing the hand. Viewing sculpture, the eye informs moving hands and resting fingertips.");

quotes3.push("Hollywood is where people spend a lot of time worrying about how <BR>they're aging, instead of just being grateful that they are.");

quotes3.push("The reason there are so many assholes is simple: <BR>most people don't work very hard at not being assholes.");

quotes3.push("If the Israelis were as poor as the Palestinians, <BR>I doubt there would be any conflict.");

quotes3.push("People on Wall Street like to call it investing, but no matter <BR>how you slice it, it's betting.");

quotes3.push("Is no one aware that the increase in Russian saber-rattling is directly proportional to the apparent weakness in our military?");

quotes3.push("The unexamined belief in the isolated mind is an illustration <BR>of armchair philosophy at its worst.");

quotes3.push("Most bad poems are simply not poems.");


//THE FOLLOWING FOUR LINES ARE FOR TESTING ONLY
//maxlength = quotes3.length;
//document.write((next+1)+"/");
//document.write((maxlength)+ ': '+ "<BR>");
//document.write((quotes3[next]));


//RESTORE THIS ONCE TESTING COMPLETE
document.write(quotes3[(Math.floor(Math.random() * quotes3.length))]);


}

/*--- EndOfFile ---*/
