  function quote() {
 //Random Quotes - Quote
 } ; q = new quote() ; n = 0
  function quote2() {
 //Random Quotes - Author
 } ; r = new quote2()
  function quote3() {
 //Random Quotes - 2nd word
 } ; s = new quote3()

 // Quote database -------------------------------------
 q[n++]= "Worry never robs tomorrow of its sorrow, it only saps today of its joy."
 q[n++]= "Worrying is like a rocking chair, it gives you something to do, but it gets you nowhere."
 q[n++]= "You can't teach anybody anything, only make them realize the answers are already inside them"
 q[n++]= "I like living. I have sometimes been wildly, despairingly, acutely miserable, racked with sorrow, but through it all I still know quite certainly that just to be alive is a grand thing."
 q[n++]= "When I let go of what I am, I become what I might be."
 q[n++]= "Look for the good in every person and every situation. You'll almost always find it."
 q[n++]= "I am always doing that which I can not do, in order that I may learn how to do it."
 q[n++]= "To achieve great things you have first to believe it."

 n= 0
 r[n++]= "Leo F. Buscaglia"
 r[n++]= "Glenn Turner"
 r[n++]= "Gallileo"
 r[n++]= "Agatha Christie"
 r[n++]= "Lao Tzu"
 r[n++]= "Brian Tracy"
 r[n++]= "Pablo Picasso"
 r[n++]= "Arsene Wenger"

 i=Math.floor(Math.random() * n) ;


document.write("\"");
document.write("<em>");
document.write( q[i] );
document.write("</em>");
document.write("\"&nbsp;--&nbsp;");
document.write( r[i] );
