  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++]= "You can't teach anybody anything, only make them realize the answers are already inside them"
 q[n++]= "...understand the greatest secret on Earth: everyone on it has a gift for you - if only you will take it."

 n= 0
 r[n++]= "Leo F. Buscaglia"
 r[n++]= "Gallileo"
 r[n++]= "Guy Finley"

 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] );
