This helped the album thumbnails, but my little thumbnails in the paged thumbs nav were still looking funny.
If anyone is interested, I made the Paged Thumbs Nav function use the custom cropping by replacing:
`echo "<img src='".htmlspecialchars($image->getCustomImage(null, $this->width, $this->height, $this->width, $this->height, null, null, true))."' alt=\"".strip_tags($image->getTitle())."\" width='".$this->width."' height='".$this->height."' />";
`
with:
`echo "<img src='".htmlspecialchars($image->getThumb())."' alt=\"".strip_tags($image->getTitle())."\" width='".$this->width."' height='".$this->height."' />";`
And setting the thumbnail dimensions to something appropriate in the admin. I don't use the thumbnail pages, so this worked for me!