var APP = (function()
{
    function init()
    {
        if ('jsDataStore' in window)
        {
            var nodeId = window.jsDataStore.get('nodeId');
            if (nodeId)
            {
                window['animationEnable'] = function(enabled)
                {
                    $$("*[name=" + nodeId + "]")[0].animEnable(enabled);
                }
            }
        }
    }

    return {
        init    : init
    }
})();

