Monster: It seems, as I've taken a closer look, you've added this subalbum section here:
This makes it work (https), but, when I take it out, it no longer works.
Can you explain this? When I open up your album.php into dreamweaver, it says the code isn't fully functional and has some issues with syntax.
<!-- Wrap Subalbums -->
<div id="subcontent">
<div id="submain">
<!-- SubAlbum List -->
<ul id="albums">
<?php while (next_album()): ?>
[*]<div class="imagethumb"><a>" title="View the album <?=getAlbumTitle();?>
<?php if (getNumImages() > 0) {
echo "with ".getNumImages()." image(s)\">";
} else {
echo " (subalbums)\">";
} ?>
<?php printCustomAlbumThumbImage(getAlbumTitle(), null, 180, null, 180, 80); ?></a></div>
<h4><a>" title="View album: <?=getAlbumTitle();?>"><?php printAlbumTitle(); ?></a></h4>
<?php endwhile; ?>
<div class="clearage"></div>
</div>
</div>