// ==============================================
// 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] = "Listen to your heart ";
Quotation[1] = "Open up your mind ";
Quotation[2] = "Pack up your best smile ";
Quotation[3] = "Live your dreams ";
Quotation[4] = "Enjoy your trip ";
Quotation[5] = "Sky is the limit ";
Quotation[6] = "Fullfill your desires ";
Quotation[7] = "Fasten your seatbelts ";
Quotation[8] = "Do not forget the future ";
Quotation[9] = "Never give up ";
Quotation[10] = "Investigate your destiny";
Quotation[11] = "Live a happy life";
Quotation[12] = "Future is around the corner";
Quotation[13] = "Prepare your travels";
Quotation[14] = "Traveling is learning";
Quotation[15] = "Travel without limits";
Quotation[16] = "No travel, no fun";
Quotation[17] = "Cross the borders";
Quotation[18] = "Live and travel, travel and live";
Quotation[19] = "Travels are forever";
Quotation[20] = "Travel around the globe";
Quotation[21] = "Live the present at its most";
Quotation[22] = "Yesterday is gone";
Quotation[23] = "Here and now";
Quotation[24] = "Do not wait for tomorrow";
Quotation[25] = "Paradise is on earth";
Quotation[26] = "Admire what you do not know";
Quotation[27] = "Learn to love";
Quotation[28] = "All you travels are belong to us";
Quotation[29] = "Grass is always greener on the other side";
Quotation[30] = "Never too old, never too young to travel";
Quotation[31] = "Far from home or always at home?";
Quotation[32] = "Make it happen";
Quotation[33] = "The longest walk starts with one 1st step";
Quotation[34] = "You could be here";
Quotation[35] = "Move on";
Quotation[36] = "Kiss your friends";
Quotation[37] = "Doors are never closed";
Quotation[38] = "The world is an open book";
Quotation[39] = "Will you miss home?";
Quotation[40] = "Why not? Move on";
Quotation[41] = "Share your travels, share your wisdom";
Quotation[42] = "Travel everywhere, but be always you";
Quotation[43] = "Blue or red pill?";
Quotation[44] = "Fly away";
Quotation[45] = "Collect smiles";
Quotation[46] = "We don't know nothing";
Quotation[47] = "Stop reading, start writting your life";
Quotation[48] = "The internet is not real";
Quotation[49] = "Be nice to strangers";
Quotation[50] = "You should not be reading this";
Quotation[51] = "Travel around the world, and go back to Born";
Quotation[52] = "New trip, new life?";
Quotation[53] = "Are you into it?";
Quotation[54] = "Ready to take off?";
Quotation[55] = "Virtual travel is nice, real travel is better";
Quotation[56] = "Do not stop here";
Quotation[57] = "Blend in with locals";
Quotation[58] = "Enjoy!";
Quotation[59] = "Use public transport";
Quotation[60] = "Be humble";
Quotation[61] = "Be nice";
Quotation[62] = "Your destiny is yours";
Quotation[64] = "Whatever you do, smile";
Quotation[65] = "This is not the end";
Quotation[66] = "After life, joy";
Quotation[67] = "Walking is learning";
Quotation[68] = "Learn your history";
Quotation[69] = "Find new friends, and keep the old ones";
Quotation[70] = "Listen to the old ones";
Quotation[71] = "Dedicated to Steve Hawking";
Quotation[72] = "Learn from the masters";
Quotation[73] = "You do not have to wait";
Quotation[74] = "love, love... doesn't come easy?";
Quotation[75] = "Peace and love";
Quotation[76] = "Listen twice, speak once";
Quotation[77] = "Life is short and fun is long, or viceversa?";
Quotation[78] = "Love soldiers";
Quotation[79] = "I miss paradise";


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