
var quotes=new Array()


quotes[0]='at work'

quotes[1]='at home'

quotes[2]='in a social setting'

quotes[3]='with others'

quotes[4]='for yourself'

quotes[5]='a project'

quotes[6]='an endeavor'

quotes[7]='a situation'

quotes[8]='a problem'

quotes[9]='a new place'

quotes[10]='at another house'

quotes[11]='at school<br>or a learning place'

quotes[12]='in a public place'

quotes[13]='on vacation'

quotes[14]='in the media<br>or internet'
var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])

