var Quotation=new Array()

Quotation[0] = "If society cannot help the many who are poor, it cannot save the few who are rich.--John. F. Kennedy";
Quotation[1] = "There are those who look at things the way they are, and ask why... I dream of things that never were, and ask why not?--Robert F. Kennedy";
Quotation[2] = "All of the great leaders have one characteristic in common: it was the willingness to confront unequivocally the major anxiety of people in their time. This, and not much else, is the essence of leadership.--John Kenneth Galbraith";
Quotation[3] = "It is not power that corrupts, but fear. Fear of losing power corrupts those who wield it and fear of the scourge of power corrupts those who are subject to it.--Aung San Suu Kyi";
Quotation[4] = "It is an unfortunate human failing that a full pocketbook often groans more loudly than an empty stomach.--Franklin D. Roosevelt";
Quotation[5] = "The modern conservative is engaged in one of man's oldest exercises in moral philosophy; that is, the search for a superior moral justification for selfishness - John Kenneth Galbraith";
Quotation[6] = "The new rage is to say that the government is the cause of all our problems, and if only we had no government, we'd have no problems. I can tell you, that contradicts evidence, history and common sense.--William J. Clinton";
Quotation[7] = "My choice early in life was either to be a piano-player in a whorehouse or a politician. And to tell the truth, there's hardly any difference.--Harry S. Truman";
Quotation[8] = "...we believe strongly in the right to differ in this country, and the right to dissent, and if I have done a good job of anything since I've been president, it's to ensure that there are plenty of dissenters.--Lyndon Baines Johnson";
Quotation[9] = "There is no reason good can't triumph over evil, if only the angels will organize along the lines of the mafia.--Kurt Vonnegut";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();