    var quotes = ["\"The best way to predict<br>the future is to invent it.\"<br> --Alan Kay", "I'd rather be hacking Lisp.",  "Peace, Love, Linux", "We are the knights who say . . . <strong>Ni!</strong>", "Who are you, who are so wise in the ways of science?", "If you didn't document it, you didn't do it.", "RU-486 . . .<br>or are you against it?", "\"Programming should be fun.<br>Programs should be beautiful.\" <br>--Paul Graham", "I wanted to be . . . a lumberjack!", "Yes, Otto, apes do read books.<br>They just don't understand them.", "What would Nietzsche do?", "But ours go up to 11."];

    function GetQuote(qlist) {
        return qlist[(Math.floor(Math.random() * qlist.length)) % qlist.length];
    }

