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

    window . onload = function ()
    
        {
        game = new Tiles ();
        game . initialize ("/games/tiles");
        
        $ ("game") . appendChild (game . getGraphics ());
        
        return;
        }
