For the image previews (next and previous links) why not use a jquery slider like I did
here???
I wouldn't even begin to know how to integrate that with the site.. I'm using wordpress with a plugin specifically for webcomic sites
Simple you'd put this in your head tags.
<link href="css/screen.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/easySlider1.7.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#slider").easySlider({
auto: false,
continuous: true
});
});
</script>
and you'd put this where the images would go.
<div id="container">
<div id="content">
<div id="slider"><ul>
<li><img src="images/frame01.jpg" alt="Frame 1" /></a></li>
<li><img src="images/frame02.jpg" alt="Frame 2" /></a></li>
<li><img src="images/frame03.jpg" alt="Frame 3" /></a></li>
<li><img src="images/frame04.jpg" alt="Frame 4" /></a></li>
<li><img src="images/frame05.jpg" alt="Frame 5" /></a></li>
<li><img src="images/frame06.jpg" alt="Frame 6" /></a></li>
<li><img src="images/frame07.jpg" alt="Frame 7" /></a></li>
<li><img src="images/frame08.jpg" alt="Frame 8" /></a></li>
</ul></div></div></div>
You can download the CSS, and JQuery files you'd need below, not only does this make it more user friendly it makes it look a lot better too. The only files you really need to exit is example.html, and screen.css, but feel free to edit it however you want. This dude Rafiel gave me the script by the way.