    var game = null;

    var $ = function (id)
    
        {
        return (document . getElementById (id));
        };

    window . onload = function ()
    
        {
        game = new Diligence ();
        game . initialize ();
        game . render ($ ("game"));

        return;
        };
