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