I don't have access to a machine to test this out at the moment..but I'd look at how the album and image pages behave differently when it comes to displaying items. The whole structure is different.
On Image.php for example:
<?php if (hasPrevImage()) { ?>
<?php echo html_encode(getPrevImageURL()); ?>
<?php } if (hasNextImage()) { ?>
<?php echo html_encode(getNextImageURL()); ?>"
You'd probably have to rig your album page up with some custom calls, since ZenPhoto would likely be unable to make any sense of a call like..:
$img = $_zp_current_image->getPrevImage();
from the album page.
Anyhow..just a shot in the dark without having a test case in front of me, but hopefully a good hint if you want some ideas on how to get something going.
Frankly, from what it sounds to me, It sounds like you want a carousel of images above your normal album photos so the user doesn't have to scroll or move their mouse, right?
If that were the case...and you don't mind a dirty little solution...grab up the jCarousel jQuery plugin (http://github.com/jsor/jcarousel) and do the following:
`
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
wrap: 'circular'
});
});
</script>
Then just wrap your thumbs in the included list elements by modifying their generation functions (I did something very similar for a jQuery LazyLoad setup):
<ul id="mycarousel" class="jcarousel-skin-tango">
[*][Image:
http://static.flickr.com/66/199481236_dc98b5abb3_s.jpg]
[*][Image:
http://static.flickr.com/75/199481072_b4a0d09597_s.jpg]
[*][Image:
http://static.flickr.com/57/199481087_33ae73a8de_s.jpg]
[*][Image:
http://static.flickr.com/77/199481108_4359e6b971_s.jpg]
[*][Image:
http://static.flickr.com/58/199481143_3c148d9dd3_s.jpg]
[*][Image:
http://static.flickr.com/72/199481203_ad4cdcf109_s.jpg]
[*][Image:
http://static.flickr.com/58/199481218_264ce20da0_s.jpg]
[*][Image:
http://static.flickr.com/69/199481255_fdfe885f87_s.jpg]
[*][Image:
http://static.flickr.com/60/199480111_87d4cb3e38_s.jpg]
[*][Image:
http://static.flickr.com/70/229228324_08223b70fa_s.jpg]
`