I’m using this theme now with WP2. It’s very nice, you’ve done a great job! Instead of your photo gallery, I’m using Coppermine with the CPG Integration plugin. What mail form are you using? I was using PXS with an old theme before for its anti-spam features.
Also, I found a bug with the comment ID numbers. It was apparent when Get Recent Comments plugin was turned on. It points to the absolute comment ID number, not the relative number you have in your comments.php. Change this line in the comments.php file:
<li id="comment-<?php echo $commentcount ?>" class="<?php comment_type('comment','trackback','pingback'); ?>">
to:
<li id="comment-<?php comment_ID() ?>" class="<?php comment_type('comment','trackback','pingback'); ?>">
…and all will work fine. Cool!