
var quotes=new Array()

quotes[1]=''
quotes[2]='Science without religion is lame, religion without science is blind. <br><i>-Albert Einstein</i>'

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[1])


