OK, I sloved it like this:
`
<?php
// only on the "albums" pages
if ($_zp_gallery_page == 'album.php') {
?>
<?php printAlbumMenuList("omit-top", true, "", "menu-active", "submenu", "menu-active", "", 2, 0, false, true, NULL); ?>
<?php
}
// if on any other page than "albums"
else {
$galleryobject = new Gallery();
$albumobject = new Album($galleryobject, "albums"); // omit top album "albums"
$albumarray = $albumobject->getAlbums();
echo "<ul class='submenu'>\n"; // top level list
printAlbumMenuListAlbum($albumarray, "/" . getCurrentTheme() . "/", "", "list", NULL, NULL, NULL, NULL, NULL, NULL, NULL);
echo "</ul>\n";
}
?>
`