public function PopulateChildMenus()
 {
     foreach (ApplicationMenu::GetChildren($this->GetIndex()) as $aMenu) {
         $index = $aMenu['index'];
         $oMenu = ApplicationMenu::GetMenuNode($index);
         $oMenu->PopulateChildMenus();
     }
 }