    var ptrRand = Math.round((Math.random()*8)+1);
    switch (ptrRand) {
        case 1:
            document.write('<font face="Verdana" size="-1">When we say fantasy sports,<br>we mean FANTASY sports!</font>');
            break;
        case 2:
            document.write('<font face="Verdana" size="-1">Putting the Fantasy back<br>into Fantasy Sports!</font>');
            break;
        case 3:
            document.write("<font face=\"Verdana\" size=\"-1\">Let's get it on!</font>");
            break;
        case 4:
            document.write('<font face="Verdana" size="-1">The most fantasy you can get<br>in your fantasy sports!</font>');
            break;
        case 5:
            document.write('<font face="Verdana" size="-1">Kick some orcish ass today!</font>');
            break;
        case 6:
            document.write('<font face="Verdana" size="-1">Where your GAME FACE<br>has TUSKS!</font>');
            break;
        case 7:
            document.write('<font face="Verdana" size="-1">Where you learn the value<br>of a good suit of armor!</font>');
            break;
        case 8:
            document.write('<font face="Verdana" size="-1">Beating the hell out<br>of the competition!</font>');
            break;
        case 9:
            document.write('<font face="Verdana" size="-1">Play hard or DIE!</font>');
            break;
    }
