<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin -->
var howMany = 10
var quote = new Array(howMany+1)
quote[0]="<q>Whatever you think you can do or believe you can do, begin it. Action has magic, grace and power in it. Begin it now.</q><br />Goethe"
quote[1]="<q>Leap and the net will appear.</q><br />Anon"
quote[2]="<q>When the student is ready, the teacher will appear.</q><br />Anon"
quote[3]="<q>You cannot cross a chasm in two small leaps.</q><br />Lloyd George"
quote[4]="<q>Until one is committed, there is hesitancy, the chance to draw back, always ineffectiveness. ... there is one elementary truth ...: that the moment one definitely commits oneself, then Providence moves too.</q><br />W.H.Murray"
quote[5]="<q>Life is a gift we're given each day. Dream about tomorrow, but live for today.</q><br />Anon"
quote[6]="<q>All birth ends in death.<br />All creation ends in dissolution.<br />All accumulation ends in dispersion.<br />All that appears real is transitory.<br />... Come, Drink the elixir of fearlessness!</q><br />Nagarjuna"
quote[7]="<q>How can I become still? By flowing with the stream.</q><br />Lao-Tzu" 
quote[8]="<q>The most beautiful thing we can experience is the mysterious.</q><br />Albert Einstein"
quote[9]="<q>Don't go around saying the world owes you a living: the world owes you nothing; it was here first.</q><br />Mark Twain"
quote[10]="<q>When you're going through hell - keep going.</q><br />Sir Winston Churchill 1874-1965"


function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
// 



