<!--
document.write("<font size=2 face=Verdana,Arial,Helvetica,Sans-Serif color=#ffffff>")
var howMany = 3
var quote = new Array(howMany+1)
quote[0]="...be the change you want to see"
quote[1]="...seek the questions"
quote[2]="...travel the path less trodden"
quote[3]="...choose simplicity"
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)
document.write("</font>")
//-->
