<!-- Begin
var howMany = 5
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``The future depends on what we do in the present.`` <br> - Mahatma Gandhi</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time is a great teacher, but unfortunately... <br> ...it kills all its pupils.`` <br> -  	Louis Hector Berlioz</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time is a sort of river of passing events, and strong as its current; <br> no sooner is a thing brought to sight than it is swept by <br> and another takes its place, and this too will be swept away.`` <br> - Marcus Aelius Aurelius Antoninus</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``How did it get so late so soon?`` <br> - Theodor Seuss Geisel</font>' 
quote[4]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time keeps on slippin`, slippin`, slippin`,`` <br> into the future. <br> - Steve Miller</font>' 
quote[5]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time flies like the wind.&nbsp;&nbsp;Fruit flies like bananas.`` <br> - Groucho Marx</font>'
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
num = rndnumber()
rndquot = quote[num]
document.write(rndquot)
// End -->