   function randMsg() {
       var msgs = new Array(" \"Je pense \r donc je suis.\" by Rene Descartes", "\"How swift are the feet of the days <br /> of the years of youth.\" by Mark Twain", "\"The less you knew, the more you \n could believe.\" by Stephen King");

       var i = Math.floor(Math.random()*3);

       if(i <= 3 && i >= 0)
            document.write(msgs[i]);
       else
            document.write("Your saying may be here. :)");        
   }

