I was just going over the archive and it reminded me that the current interface can get a little painful when browsing through a hundred or so comics. I don't know how good you guys are at coding, when you get a chance could you make it so the pictures work as forward links and set the site up so the forward and back arrows on a keyboard do the same for the comic? Looking at your code the first change should be simple enough. Currently images are placed into links that go to the image itself. If you replaced these links with one going to the next page it would make browsing the archive a lot easier. I suspect that all of this is being taken care of with PHP or something else on the server. As for using the forward and back arrows this can be taken care of with a bit of javascript. Here's a sample of the code that you would need to get this working:
<script type="text/javascript">
function go(e) {
if(!e) var e = window.event;
if(e.keyCode==37){ //left arrow
document.location="photo.php?id=3"; //go to previous photo
}
else if(e.keyCode==39){ //right arrow
document.location="photo.php?id=5"; //go to next photo
}
}
document.onkeydown = go
</script>
