/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 34;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Leonardo da Vinci (1452-1519)";
body="When once you have tasted flight<br>you will always walk the earth with your eyes turned skyward;<br> for there you have been and there you will always be.";
}

if (quotes==1) {
title="Augustine (354-430)";
body="The world is a book, and those who do not travel read only one page.";
}

if (quotes==2) {
title="Unknown";
body="The rewards of the journey far outweigh the risk of leaving the harbor.";
}

if (quotes==3) {
title="Carl Burns";
body="A child on a farm sees a plane fly by overhead<br> and dreams of a faraway place.<br>  A traveler on a plane sees the farm below<br> and dreams of home..";
}

if (quotes==4) {
title="David Letterman";
body="There's no business like show business,<br> but there are several businesses like accounting.";
}

if (quotes==5) {
title="Benjamin Disraeli";
body="Like all great travelers,  I have seen more than I remember <br>and I remember more than I have seen.";
}

if (quotes==6) {
title="George Moore";
body="A man travels the world over in search of what he needs and returns home to find it.";
}

if (quotes==7) {
title="Mark Twain";
body="Twenty years from now you will be more disappointed by the things that you didn’t do<br> than by the ones you did do.<br><br>&nbsp;Sail away from the safe harbor. <br>&nbsp;&nbsp;&nbsp;Catch the trade winds in your sails.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Explore. Dream. Discover.";
}

if (quotes==8) {
title="Maya Angelou";
body="Perhaps travel cannot prevent bigotry, <br> but by demonstrating that all peoples cry, laugh, eat, worry and die, <br>it can introduce the idea that if we try and understand each other,<br>  we may even become friends.";
}

if (quotes==9) {
title="G.K. Chesterton";
body="The whole object of travel is not to set foot on foreign land; <br> it is at last to set foot on one’s own country as a foreign land.";
}

if (quotes==10) {
title="Lin Yutang";
body="No one realizes how beautiful it is to travel<br> until he comes home and rests his head on his old, familiar pillow.";
}

if (quotes==11) {
title="T.S. Elliot";
body="We shall not cease from exploration and the end of all of our exploring will be<br> to arrive where we started and know the place for the first time.";
}

if (quotes==12) {
title="Edith Durham";
body="There is a peculiar pleasure in riding out into the unknown. <br> A pleasure which no second journey on the same trail ever affords.";
}

if (quotes==13) {
title="Andre Gide";
body="Man cannot discover new oceans unless he has the courage to lose sight of the shore.";
}

if (quotes==14) {
title="Aldous Huxley";
body="To travel is to discover that everyone is wrong about other countries.";
}

if (quotes==15) {
title="Mark Twain";
body="Travel is fatal to prejudice, bigotry, and narrow-mindedness.";
}

if (quotes==16) {
title="J.R.R. Tolkien";
body="...not all those who wander are lost.";
}

if (quotes==17) {
title="Edith Wharton";
body="One of the great things about travel is that you find out how many good, kind people there are.";
}

if (quotes==18) {
title="Amy Barrett";
body="The moment the plane lifts off the ground I always think,<br> 'This is incredible.  I can’t believe we can do this.'";
}

if (quotes==19) {
title="Hilaire Belloc";
body="I have wandered all my life, and I have traveled; the difference between the two is this: <br>we wander for distraction, but we travel for fulfillment.";
}

if (quotes==20) {
title="Robert Orben";
body="A vacation is having nothing to do and all day to do it.";
}

if (quotes==21) {
title="Will Kommen";
body="If you look like your passport photo, you're too ill to travel.";
}

if (quotes==22) {
title="Elbert Hubbard";
body="No man needs a vacation so much as the person who has just had one.";
}

if (quotes==23) {
title="Robert Benchley";
body="In America there are two classes of travel:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;First Class, and 'with children.'";
}

if (quotes==24) {
title="William Wordsworth, 'I Travelled Among Unknown Men', 1801";
body="I travelled among unknown men,<br>In lands beyond the sea;<br>Nor, England! did I know till then<br>What love I bore for thee.";
}

if (quotes==25) {
title="Robert Louis Stevenson, 'Travels with a Donkey', 1879";
body="For my part, I travel not to go anywhere, but to go.<br>I travel for travel's sake.  The great affair is to move...";
}

if (quotes==26) {
title="Robert Frost";
body="Two roads diverged in a woods, and I --<br>&nbsp;&nbsp;&nbsp;I took the one less traveled by,<br>And that has made all the difference.";
}

if (quotes==27) {
title="Lao Tzu";
body="A good traveler has no fixed plans, and is not intent on arriving.";
}

if (quotes==28) {
title="Herman Melville";
body="It is not down in any map; true places never are.";
}

if (quotes==29) {
title="Yogi Berra";
body="If you come to a fork in the road, take it.";
}

if (quotes==30) {
title="John Steinbeck";
body="A journey is like marriage. The certain way to be wrong is to think you control it.";
}

if (quotes==31) {
title="Globus Family of Brands advertisement";
body="Travel is the only thing you buy that makes you richer.";
}

if (quotes==32) {
title="Star Alliance advertisement, July 2008";
body="When people meet, ideas are born, collaborations develop, and great things are bound to happen.";
}

if (quotes==33) {
title="Banner at the new Indianapolis Airport";
body="Back home on the ground, we discover that the gift the great wings gave us is the new eyes to see that this place where we live we love more than we knew.";
}

document.write('<p class="withquote">');
document.write('<em>'+ body +'</em></p>');
document.write('<p class="withunquote">&nbsp;&nbsp;&nbsp;-&nbsp;' + title + '</p>');

