var quotes = new Array("\"The world's first massively multiplayer FPS\" - Gamespy","\"One Big Fat Action Packed Experience!\" - IGN");

var num = Math.round(Math.random() * (quotes.length - 1));


function writeOUT () {

 document.write(quotes[num]);

}

writeOUT();
