function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}


quote = new makeArray(7);
quote[0] = "Researching the Theater of Pompey?  A good starting place is TOPOGRAHIC DICTIONARY.";
quote[1] = "Looking for Images?  Our Image Database is extensive.";
quote[2] = "Catullus Complete, e-reader friendly text and translation, is now available.";
quote[3] = "PDCS . . . Public Domain Classics and Scholarship . . . HQ and Free!";
quote[4] = "BIBLIOGRAPHY provides full citations for relevant scholarship.";
quote[5] = "LINKS will direct you to resources among the best available online.";
quote[6] = "Abode Reader 6+ is recommended.";




function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff