function somequotes(){
//Create an array which will hold quotes
var quotes=new Array()

quotes[0]='Because laughter is<br>the best medicine.'
quotes[1]='Because the joke<br>is on me.'
quotes[2]='Send help! I\'m trapped in<br>a fortune cookie factory.'
quotes[3]='Total absence of humor<br>renders life impossible.'
quotes[4]='A wasted day is<br>one without laughter.'
quotes[5]='Laugh at yourself first,<br>before anyone else can.'

var whichquote=Math.floor(Math.random()*(quotes.length));//which quote to display

var fontstylestart='<div id="quotes">';
var fontstyleend='</div>'
document.write(fontstylestart+quotes[whichquote]+fontstyleend)
}
