You can use the print_album_menu but on several user's request this keeps even selected items as clickable links (for easier usage in dropdown menus for example)
Btw, you do this easier without setting contextes using the object model:
`
$toplevelalbums = $_zp_gallery->getAlbums();
foreach($toplevelalbums as $album) {
$obj = new Album($_zp_gallery,$album);
(link stuff using the object model)
}
`
You can check the current album within that by using the global of the current album: `$_zp_current_album`. So something like:
`
if($_zp_current_album->name == $obj->name) {
<disable link>
} else {
<use link>
}
`
Note that the "name" is the unique value, not the title. Both are independent.
Also see the object model tutorial.