yes, I'm making my own theme... I think that's kind of the problem that albums and sub-albums are being handled within one file (album.php)...
here's some to code to explain my issue better:
on the left hand side I display a list of sub-albums:
<?php while (next_album()): ?>
<a>" title="View album:
<?php echo getAlbumTitle();?>">
<?php printAlbumTitle(); ?></a>
<?php endwhile; ?>
this all works well...
when I click on one of the sub-album links in the list...
a list of the specific sub-album image thumbnails is displayed in the right hand side region...
<?php while (next_image(false, $firstPageImages)): ?>
<div class="image">
<div class="imagethumb">
<a>" title="<?php echo getImageTitle();?>">
<div><?php printImageThumb(getImageTitle()); ?></div>
</a>
</div>
</div>
<?php endwhile; ?>
this all works well...
now, as you can see... there are two blocks of code within one file that are process in two different depth levels of (sub)albums... this confuses me because I can't figure out how to display (album1) thumbnails in the right hand region without clicking on the first (album1)link on the left hand side...
I hope this all makes sense...