
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

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] = "It is not down in any map; true places never are.  ~ Herman Melville";
Quotation[1] = "We wander for distraction, but we travel for fulfillment.  ~ Hilaire Belloc";
Quotation[2] = "A journey of a thousand miles must begin with a single step.  ~ Lao Tzu";
Quotation[3] = "If you don't know where you are going, any road will lead you there.  ~ Anonymous";
Quotation[4] = "The only way of catching a train I ever discovered is to miss the train before.  ~ G.K. Chesterton";
Quotation[5] = "One's destination is never a place, but a new way of seeing things.  ~ Henry Miller";
Quotation[6] = "No matter where you go, there you are.  ~ Anonymous";
Quotation[7] = "The journey not the arrival matters.  ~ T. S. Eliot";
Quotation[8] = "All that is gold does not glitter not all those who wander are lost. ~ J. R. R. Tolkien";
Quotation[9] = "If you come to a fork in the road take it.  ~ Yogi Berra";
Quotation[10] = "A good traveler has no fixed plans, and is not intent on arriving. ~ Lao Tzu";
Quotation[11] = "Anything we fully do is an alone journey. ~ Natalie Goldberg";
Quotation[12] = "Don't listen to what they say. Go see. ~ Chinese proverb";
Quotation[13] = "Go forth on your path, as it exists only through your walking. ~ Saint Augustine (354-430)";
Quotation[14] = "He who strays discovers new paths. ~ Nils Kjær";
Quotation[15] = "It's only when we realize that life is taking us nowhere that it begins to have meaning. ~ P. D. Ouspensky";
Quotation[16] = "Look at the stars lighting up the sky: no one of them stays in the same place. ~ Seneca (4 BC - 65 AD)";
Quotation[17] = "When you get there, there isn't any there there. ~ Gertrude Stein";
Quotation[18] = "Who lives sees much. Who travels sees more. ~ Arab proverb";
Quotation[19] = "I had seen a little and knew a lot. Now I've seen a little more and know a lot less ~ Micah MacAllen";
Quotation[20] = "I love to travel, but I hate to arrive. ~ Albert Einstein";
Quotation[21] = "The world is a book, those who do not travel read only one page. ~ Saint Augustine (354-430)";
Quotation[22] = "Embrace the detours. ~ Kevin Charbonneau";
Quotation[23] = "Don't tell me how educated you are, tell me how much you traveled. ~ Mohammed";
Quotation[24] = "Tourists don't know where they've been, travelers don't know where they're going. ~ Paul Theroux";
Quotation[25] = "Travel makes one modest. You see what a tiny place you occupy in the world. ~ Scott Cameron";
Quotation[26] = "Travel like Ghandi, with simple clothes, open eyes and an uncluttered mind. ~ Rick Steves";
Quotation[27] = "The real voyage of discovery consists not in seeing new landscapes, but in having new eyes. ~ Marcel Proust";
Quotation[28] = "The longest journey is the journey inwards. ~ Dag Hammarskjold";



// ======================================
// 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();
