/* 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 = 14;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="We fail far more often by timidity than by over-daring. ~ David Grayson";
}

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

if (quotes==2) {
body="Who dares nothing, need hope for nothing. ~ Johann Von Schiller";
}

if (quotes==3) {
body="The traveler sees what he sees, the tourist sees what he has come to see. ~ Gilbert K. Chesterton";
}

if (quotes==4) {
body="Well, we knocked the bastard off! ~ Edmund Hillary";
}

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

if (quotes==6) {
body="Life is either a great adventure or nothing. ~ Helen Keller";
}

if (quotes==7) {
body="Dream as if you'll live forever, live as if you'll die today. ~ James Dean";
}

if (quotes==8) {
body="What fun is it being cool if you can't wear a sombrero. ~ Calvin and Hobbes";
}

if (quotes==9) {
body="You are never too old to set another goal or to dream a new dream. ~ C.S. Lewis";
}

if (quotes==10) {
body="Courage is the discovery that you may not win, and trying when you know you can lose. ~ Tom Krause";
}

if (quotes==11) {
body="Two roads diverged in a wood, and I -- I took the one less traveled by, and that has made all the difference. ~ Robert Frost";
}

if (quotes==12) {
body="All journeys have secret destinations of which the traveler is unaware. ~ Martin Buber";
}

if (quotes==13) {
body="Somewhere, something incredible is waiting to be known. ~ Dr. Carl Sagan";
}

document.write('<div align=center>');
document.write(''+ body +'');
document.write('</div>');
