

// In quotation 8, note the text, \"beauty\" -- if you need
// to use double-quote " marks, you *must* precede each
// double-quote with a backslash \... otherwise the script
// will break.




var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Let us take care of the children, for they have a long way to go. Let us take care of the elders, for they have come a long way. Let us take care of those in between, for they are doing the work. - traditional African Prayer";
Quotation[1] = "Service without ideal of self . . . trains you to transcend all the artificial distinctions imposed by history and geography, and to realize that the human community is one and indivisible. -  Sri Sathya Sai Baba ";
Quotation[2] = "One great, strong, unselfish soul in every community could actually redeem the world. - Elbert Hubbard ";
Quotation[3] = "There must be, not a balance of power, but a community of power; not organized rivalries, but an organized peace. - Woodrow Wilson";
Quotation[4] = "Coming together is a beginning, staying together is progress, working together is success. - Henry Ford";
Quotation[5] = "One is not born into the world to do everything, but to do something. - Henry David Thoreau";
Quotation[6] = "When spider webs unite, they can tie up a lion. - African proverb.";
Quotation[7] = "How wonderful it is that nobody need wait a single moment to improve the world. - Anne Frank";
Quotation[8] = "Nobody made a greater mistake than he who did nothing because he could do only a little. - Edmund Burke";
Quotation[9] = "The activist is not the person who says the river is dirty. The activist is the person who cleans up the river. - Ross Perot"; 
Quotation[10] = "The important work of moving the world forward does not wait to be done by perfect men. -George Eliot"; 
Quotation[11] = "Be the change that you want to see in the world. -Mohandas K. Gandhi"; 
Quotation[12] = "Never doubt that a small group of thoughtful, committed citizens can change the world. Indeed, it’s the only thing that ever has.- Margaret Mead"; 
Quotation[13] = "In the confrontation between the stream and the rock, the stream always wins - not through strength but by perseverance. - H. Jackson Brown "; 
Quotation[14] = "The most important political office is that of private citizen. -   Louis Brandeis "; 
Quotation[15] = "If the society today allows wrongs to go unchallenged, the impression is created that those wrongs have the approval of the majority. -Barbara Jordan"; 
Quotation[16] = "The fight is never about grapes or lettuce. It is always about people. -, Cesar  Chavez"

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();



