Here is the code for a custom thumb table in case anyone is curious :)
`
<?php $gallery = new Gallery(); ?>
<?php $albums = array('earrings','rings','necklaces','bracelets'); ?>
<?php for($n=0; $n<count($albums); $n++){ ?>
<div class="albumCol">
<?php echo $albums[$n]; ?>
<?php $album = new Album($gallery, $albums[$n]);
$albumNames = $album->getImages(0,0,'random');
for($i=0; $i<3; $i++){
$imgobj = newImage($album, $albumNames[$i]); ?>
<div class="thumb">
[img]<?php echo $imgobj->getThumb(); ?>[/img]getTitle(); ?>" />
<?php } ?>
</div>
<?php } ?>
</div>
`