// JavaScript Document

var quotes = new Array;

quotes.push("With happy speed<br />I run and run,<br />To cheerfully feed<br />My human race,<br />To transform<br />My human face,<br />To begin<br />A new journey’s course,<br />To salute<br />The sunlit Source.");

quotes.push("If we have<br />&nbsp;&nbsp;&nbsp;dynamic enthusiasm,<br />Then time, without fail,<br />Surrenders to us.");

quotes.push("Each cheerful thought<br />Is a forward step<br />Towards your<br />&nbsp;&nbsp;&nbsp;supreme Destination.");

quotes.push("The outer run<br />And the inner run<br />Are two complementary souls.<br />They help each other<br />Tremendously.");

quotes.push("If we believe in our own<br />Self-transcendence task,<br />Then there can be<br />No unreachable goal.");

quotes.push("Yes I can!<br />I certainly can!<br />I can succeed<br />Where nobody else<br />Has dared to try.");

quotes.push("There are only three winners:<br />The one who<br />Competes with himself,<br />The one who<br />Crosses the finish line first<br />And the one who<br />Finishes the race.");

quotes.push("The determination<br />In your heroic effort<br />Will permeate your mind and heart<br />Even after your success or failure<br />Is long forgotten.");

quotes.push("Run!<br />You can easily challenge<br />The pride of frightening distance.");

quotes.push("Running makes the body young.<br />Striving makes the vital young.<br />Smiling makes the mind young.<br />Serving makes the heart young.<br />Loving makes the soul young.");

quotes.push("There is no such thing as impossibility if our adamantine will comes from within.");

quotes.push("Always take one more step<br />Then you intend to.<br />You can, without fail, do it.<br />Lo, you have done it.");

quotes.push("Try to be a runner<br />And try all the time<br />To surpass and go beyond<br />All that is bothering you<br />And standing in your way.");

document.write(quotes[(Math.floor(Math.random() * quotes.length))]);
