Your crawler markup is something like so (you probably have more images, perhaps a different id):
HTML Code:
<div class="marquee" id="mycrawler">
<img src="some1.jpg" alt=""><img src="some2.jpg" alt=""><img src="some3.jpg" alt="">
</div>
It's just ordinary HTML that the script takes and transforms into the crawler by duplicating the contents of the div and inserting it into other divs that it then moves around.
So you can simply add your links in the normal fashion:
HTML Code:
<div class="marquee" id="mycrawler">
<a href="somepage1.htm"><img src="some1.jpg" alt=""></a><a href="somepage2.htm"><img src="some2.jpg" alt=""></a><a href="somepage3.htm"><img src="some3.jpg" alt=""></a>
</div>
One other thing. Since some browsers automatically add a 1px border to all linked images, you may want to put this in the head of the page:
Code:
<style type="text/css">
a img {
border-width: 0;
}
</style>
Bookmarks