<!-- Begin Quote of the Day (was Daily Fortune)
// Compiled by Brett McCarron 
// layout and coding copyright (C) 1996-2003 The Blame Productions
// 10-06-03 New format

var howMany = 7
// this is one less than the actual number

var fortune = new Array(howMany+1)
fortune[0] = "\"Music melts all the separate parts of our bodies together.\" - <i>Anais Nin</i>" 
fortune[1] = "\"Remember, information is not knowledge; knowledge is not wisdom; wisdom is not truth; <br>truth is not beauty; beauty is not love; love is not music; music is the best.\" - <i>Frank Zappa</i>" 
fortune[2] = "\It is cruel, you know, that music should be so beautiful. It has the beauty of loneliness and of pain: of strength and freedom. <br>The beauty of disappointment and never-satisfied love. The cruel beauty of nature, and the everlasting beauty of monotony.\" - <i>Benjamin Britten</i>"
fortune[3] = "\"Music was my refuge. I could crawl into the space between the notes and curl my back to loneliness.\" -<i> Maya Angelou</i>"
fortune[4] = "\"Music expresses that which cannot be put into words and that which cannot remain silent.\" - <i>Victor Hugo</i>"
fortune[5] = "\"Music creates order out of chaos: for rhythm imposes unanimity upon the divergent, melody imposes continuity upon the disjointed, <br>and harmony imposes compatibility upon the incongruous.\" - <i>Yehudi Menuhin</i>"
fortune[6] = "\"The trouble with real life is that there's no danger music .\" - <i>Jim Carrey from 'The Cable Guy'</i>"
fortune[7] = "\"Where words fail, music speaks.\" - <i>Hans Christian Andersen</i>"
fortune[8] = "\"I don't know anything about music. In my line you don't have to.\" -<i> Elvis Presley</i>"


function rndnumber()
{
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
todayfor = rndnumber()
fort = fortune[todayfor]
document.write("<tr><td colspan='3' align='left'>");
document.write("<p class='quote'>");
// document.write("<p class='quote'>");
// document.write("Who said that\?</p><br>");
document.write(fort)
document.write("</p></td></tr>");

// End -->