/*--- Get random quote from Array 6 ---*/
/* Array 6 is Observations */
/* total number of arrays MUST always be divisible by 3 */

function getquote6() {

var quotes6 = new Array;

quotes6.push("Not so much a gap between rich and poor as a two-tier society. <BR>And it's more about lifestyle than money.");

quotes6.push("In Kafka's <I>Dairies</I> are strewn, randomly, little strands of hope <BR>woven into a monstrous tapestry of despair.");

quotes6.push("You do not value a gift from someone based on what it was worth <BR>to them, but what it is worth to you.");

quotes6.push("Why isn't there a word to describe taking profit <BR>from the misfortunes of others?");

quotes6.push("The basic human social unit is not the family but the tribe.");

quotes6.push("How can a school model based on mid-nineteenth manufacturing <BR>have any relevance in today's world?");

quotes6.push("Gridlock means not only that things don't get done, but that very often <BR>no one even <I>tries</I> to get things done.");

quotes6.push("Politicians are afraid to be the bearers of bad tidings<BR>&#151;&#151; especially when they offer no solutions.");

quotes6.push("Just because our conscious self may be unaware of choices made, <BR>it is still our self making these choices.");

quotes6.push("A key question for consciousness research: <BR>Is your mind as smart as your brain?");

quotes6.push("Not just every individual, but every organization, every political movement has the potential to become its own worst enemy.");

quotes6.push("Problems, after all, are the life blood of good stories and that is <BR>the real business of the media.");

quotes6.push("The greatest crime against culture is the belief that aesthetic judgments <BR>in everyday life don't matter.");

quotes6.push("The brain is always in the now, something the mind has to learn.<BR>");

quotes6.push("Why is it they're always taking about the anti-Christ but you never hear anything about the anti-Mohammed?");

quotes6.push("Winning is all about perpetuation of structure.");

quotes6.push("Some philosophers try to reason their way to answers when what they should be doing is finding the right questions.");

quotes6.push("It is apparently bad form to ask someone of another religion: <BR>What has your God done for me?");

quotes6.push("The behavior of people fanatical about their home team, regardless <BR>of its performance, is closer to religion than reason.");

quotes6.push("Everyone seeks and many find what they think is love. What no one seeks and very few learn is accommodation.");

quotes6.push("What Keith Olbermann doesn't seem to get is that forceful words <BR>don't need to be said forcefully.");

quotes6.push("It is possible to be abstract without being abstruse.");

quotes6.push("In research, the problem is not that everybody has pieces of the puzzle, but that too many think they have the whole picture.");

quotes6.push("When a problem endures for decades, its basic premises and assumptions need to be rethought.");

quotes6.push("Most people who think they're smart aren't even smart enough <BR>to recognize wisdom.");


//THE FOLLOWING FOUR LINES ARE FOR TESTING ONLY
//maxlength = quotes6.length;
//document.write((next+1)+"/");
//document.write((maxlength)+ ': '+ "<BR>");
//document.write((quotes6[next]));


//RESTORE THIS ONCE TESTING COMPLETE
document.write(quotes6[(Math.floor(Math.random() * quotes6.length))]);

}

/*--- EndOfFile ---*/
