If I get you right, you want the first album look different as the others?
I have not tested it, but why don't you use the album loop on index.php:
`
<?php while (next_album()): ?>
<div class="album">
div class="thumb">
a href="<?php echo getAlbumLinkURL();?>" title="View album: <?php echo getAlbumTitle();?>"><?php printAlbumThumbImage(getAlbumTitle()); ?></a>
<div>
div class="albumdesc">
"><?php printAlbumTitle(); ?>
<small><?php printAlbumDate(""); ?></small>
<?php printAlbumDesc(); ?>
<p style="clear: both; ">
</div>
<?php endwhile; ?>
</div>`
If you say want the first album on top of the page different, sort it in the admin and then check the album name right in the loop with a simple:
`<?php if(getAlbumTitle() === <youralbumname>){ $css = <yourspecialstyle>; } ?>`
Then put the `<div class="album">` in an echo statement like this
`<?php echo "<div class="".$css."">"; ?>` and it will look different. Of course this is only for the css styles, but you could use an if statement for an different albumthumbsize, too.