
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.



quotes[0]='"Memory.... is the diary that we all carry about with us"<br /><div align="right">Oscar Wilde</div> '

quotes[1]='"Experience is the name everyone gives to their mistakes"<br /><div align="right">Oscar Wilde</div>'

quotes[2]='"Memory is a way of holding on to the things you never want to lose"<br /><div align="right">Kevin Arnold</div>'

quotes[3]='"Read no history; nothing but biography, for what is life without theory"<br /><div align="right">Benjamin Disraeli</div>'

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

