function get_quote()
{
quotes = new Array(15);
authors = new Array(15);
quotes[0] = "Give a man a fish and you feed him for a day.  Teach a man to fish and you feed him for a lifetime.";
authors[0] = "Chinese Proverb";
quotes[1] = "Friends help us to mend our broken hearts.";
authors[1] = "Antique Sampler";
quotes[2] = "The busy bee teaches us two lessons: one is not to be idle, and the other is not to get stung.";
authors[2] = "Early American Proverb";
quotes[3] = "Kindness is the sunshine in which virtue grows.";
authors[3] = "Author unknown";
quotes[4] = "Don't find fault, find a remedy.";
authors[4] = "Henry Ford";
quotes[5] = "And so, my fellow Americans, ask not what your country can do for you, ask what you can do for your country";
authors[5] = "John F. Kennedy";
quotes[6] = "Life is not counted by the amount of breaths we take, but of the moments that leave us breathless";
authors[6] = "Author unknown";
quotes[7] = "The best thing about the future is that it comes only one day at a time.";
authors[7] = "Abraham Lincoln";
quotes[8] = "Happiness is not a fish that you can catch.";
authors[8] = "Our Lady Peace";
quotes[9] = "It's not whether you get knocked down, it's wheather you get up.";
authors[9] = "Vince Lombardi";
quotes[10] = "I see that the old flagpole still stands.  Have your troops hoist the colors to its peak and let no enemy ever haul them down";
authors[10] = "Douglas Mc Arthur";
quotes[11] = "A community is like a ship; everyone ought to be prepared to take the helm.";
authors[11] = "Henrik Ibsen";
quotes[12] = "We must build a new world, a far better world - one in which the eternal dignity of man is respected.";
authors[12] = "Harry Truman";
quotes[13] = "When the tide of life turns against you and the current upsets your boat, don't waste tears on what might have been just lie on your back and float";
authors[13] = "Author unknown";
quotes[14] = "Every act of love is a work of peace no matter how small.";
authors[14] = "Mother Teresa";
quotes[15] = "Here's to the blessings of the year, Here's to the friends we hold so dear, To peace on earth, both far and near.";
authors[15] = "American Toast";
index = Math.floor(Math.random() * quotes.length);
document.write("<FONT FACE=\"Arial, Helveticasans-serif\" SIZE=\"2\">" + "&quot;" + quotes[index] + "&quot;</FONT>");
document.write("<div align=\"right\">" + "<FONT FACE=\"Arial, Helveticasans-serif\" SIZE=\"1\" color=\"#CCCC00\"><I>" + "   -- " + authors[index] + "</I></FONT>" + "</div>");

}