var howMany = 11
var quote = new Array(howMany+1)
quote[0]=""Today's problems cannot be solved by thinking the way we thought when we created them."
-- Albert Einstein"
quote[1]=""It is our actions which count. Thoughts, however good in themselves, are like false pearls unless they are translated into action." -- Mahatma Ghandi"
quote[2]=""Work is love made visible." -- Khalil Gibran"
quote[3]=""Not everything that can be counted counts, and not everything that counts can be counted."
-- Albert Einstein"
quote[4]="" ...to leave the world a bit better, whether by a healthy child, a garden patch, or a redeemed social condition, to know even one life has breathed easier because you have lived. This is to have succeeded."
-- Ralph Waldo Emerson"
quote[5]=""Do unto future generations as you would have them do unto you."
-- Robert Gilman"
quote[6]=""The character of a society is the cumulative result of the countless small actions, day in and day out, of millions of people."
-- Duane Elgin"
quote[7]=""Corporations are the only organizations with the resources, the technology, the global reach, and, ultimately, the motivation to achieve sustainability."
-- Stuart Hart"
quote[8]=""Trying to be happy by accumulating possessions is like trying to satisfy hunger by taping sandwiches all over your body." -- George Carlin"
quote[9]=""Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it."
-- Goethe"
quote[10]=""Be the change you want to see in the world."
-- Mahatma Ghandi"
quote[11]=""Whatever befalls the earth, befalls the sons and daughters of the earth. Man did not weave the web of life; he is merely a strand in it. Whatever he does to the web, he does to himself."
-- Ted Perry, inspired by Chief Seattle"
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)