//store the quotations in arrays
quotes = new Array(21);
authors = new Array(21);
quotes[0] = "Any meaningful work for peace must follow the principle of non-duality.";
authors[0] = "Thich Nhat Hanh";
quotes[1] = "Nothing is created and nothing is destroyed.";
authors[1] = "Thich Nhat Hanh";
quotes[2] = "To say you don't know is the beginning of knowing.";
authors[2] = "Chinese proverb";
quotes[3] = "Sell your cleverness and buy bewilderment.";
authors[3] = "Rumi";
quotes[4] = "No problem can be solved from the same level of consciousness that created it.";
authors[4] = "Albert Einstein";
quotes[5] = "Knowledge speaks, wisdom listens.";
authors[5] = "Jimi Hendrix";
quotes[6] = "This is not philosophy - you really have to see!";
authors[6] = "Thich Nhat Hanh";
quotes[7] = "Wisdom begins in wonder.";
authors[7] = "Socrates";
quotes[8] = "A half-truth is a whole lie.";
authors[8] = "Chinese proverb";
quotes[9] = "Humans can learn nothing except by going from the known to the unknown.";
authors[9] = "Claude Bernar";
quotes[10] = "Who looks outside, dreams; who looks inside, awakes.";
authors[10] = " Carl Gustav Jung";
quotes[11] = "What we are looking for is what is looking.";
authors[11] = "St. Francis of Assisi";
quotes[12] = "Who lives without folly isn't as reasonable as he thinks he is.";
authors[12] = "François de La Rochefoucauld";
quotes[13] = "Re-examine all you have been told. Dismiss what insults your Soul.";
authors[13] = "Walt Whitman";
quotes[14] = "More wisdom is latent in things as they are than in all the words people use.";
authors[14] = "Antoine  de Saint-Exupery";
quotes[15] = "The wise person doesn't give the right answers, she poses the right questions.";
authors[15] = "Claude Levi-Strauss";
quotes[16] = "Love and do as you will.";
authors[16] = "St Augustine";
quotes[17] = "Sometimes I've believed as many as six impossible things before breakfast.";
authors[17] = "Lewis Carroll";
quotes[18] = "Perhaps in time the so-called Dark Ages will be thought of as including our own.";
authors[18] = "Georg C. Lichtenberg";
quotes[19] = "All great truths begin as blasphemies.";
authors[19] = "George Bernard Shaw";
quotes[20] = "The kingdom of heaven lies within you.";
authors[20] = "Jesus of Nazareth";

//calculate a random index


index = Math.floor(Math.random() * quotes.length);



//display the quotation




document.write("<DT>" + "" + quotes[index].italics().fontcolor("#00A987") + "\n");



document.write("<DD>" + "- " + authors[index].toUpperCase().italics().fontcolor("#00A987") + "\n");


document.write("<DT\n>");


//done