Какое меню вы хотите добавить в тему?
Если в каталоге блока вы можете использовать эту функцию темы.
function theme_uc_catalog_block($menu_tree) {
$output = '<ul class="catalog menu">';
foreach ($menu_tree->children as $branch) {
list($inpath, $html) = _uc_catalog_navigation($branch);
$output .= $html;
}
$output .= '</ul>';
return $output;
}