var quotes = new Array;
quotes.push("We all stand together");
quotes.push("Gens Una Sumus");
quotes.push("Chess makes you smart");
quotes.push("We make cool moves");
document.write(quotes[(Math.floor(Math.random() * quotes.length))]);
