this.InitMenu=function()
        {
            this.InitCates();   //初始化菜单目录
            this.InitNodes();   //初始化菜单项目录
            this.ToCurrentNodes(false); //初始化当前的菜单项的个数
        }
        
        //初始化目录
        this.InitCates=function()
         {         }
执行    this.InitCates();  
是不是 在调用  this.InitCates=function()
this.InitCates=function()
和 this.InitCates=function InitCates() 有区别吗