
var quotes=new Array()


quotes[0]='again'

quotes[1]='in the past'

quotes[2]='in the present'

quotes[3]='in the future'

quotes[4]='yesterday'

quotes[5]='in the distant past'

quotes[6]='in the distant future'

quotes[7]='tomorrow'

quotes[8]='today'

quotes[9]='soon'

quotes[10]='very soon'

quotes[11]='in a day or two'

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])

