/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 13;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
source = "Eagle Chief (Letakos-Lesa) Pawnee";
text = "What is life?  It is the flash of a firefly in the night.  It is the breath of a buffalo in the wintertime.  It is the little shadow which runs across the grass and loses itself in the sunset.";
}

if (quotes==1) {
source ="Black Elk, Oglala Sioux Holy Man (1863-1950)";
text="Out of the Indian approach to life there came a great freedom, an intense and absorbing respect for life, enriching faith in a Supreme Power, and principles of truth, honesty, generosity, equity, and brotherhood as a guide to mundane relations.";
}

if (quotes==2) {
source ="Isna-la-wica, Teton Sioux";
text="I have seen that in any great undertaking it is not enough for a man to depend simply upon himself.";
}

if (quotes==3) {
source ="Cherokee proverb";
text="When you were born, you cried and the world rejoiced. Live your life so that when you die, the world cries and you rejoice.";
}

if (quotes==4) {
source ="Seneca proverb";
text="He who would do great things should not attempt them all alone.";
}

if (quotes==5) {
source ="Lakota proverb";
text="Force, no matter how concealed, begets resistance.";
}

if (quotes==6) {
source ="Chief Seattle, 1854";
text="Humankind has not woven the web of life. We are but one thread within it. Whatever we do to the web, we do to ourselves. All things are bound together. All things connect.";
}

if (quotes==7) {
source ="Native American saying";
text="Give thanks for unknown blessings already on their way.";
}

if (quotes==8) {
source="Louis Riel, 1875"
text="Pray that God may preserve the little M&#233;tis nation, and cause it to grow... and remain faithful to its mission. During five years that I must pass in exile, I have only this to say to the M&#233;tis, remain M&#233;tis, become more M&#233;tis than ever."
}

if (quotes==9) {
text="My people will sleep for one hundred years when they awake, it will be the artists who give them their spirit back."
source="Louis Riel"
}

if (quotes==10) {
text="We consider it not asking too much to request that the Government allow us to occupy our lands in peace."
source="Gabriel Dumont, 1882"
}

if (quotes==11) {
text="You can't wake a person who is pretending to be asleep."
source="Navajo saying"
}

if (quotes==12) {
text="Man has responsibility, not power."
source="Tuscarora saying"
}

document.write('<div class=quote><strong>Thought for the day...</strong><br/><blockquote><em>'+ text +'</em>');
document.write(' (' + source +')</blockquote></div>');


