tags:

views:

33

answers:

0

Can someone figure out how to combine jquery's image thumbnail pager with adding a description paragraph? Please, please see this:

http://procollage.com/site10/wall-of-fame/favs-cycle.html

I tried to add a description sentence at the bottom of the first slide and lost the thumbnail. Please help! Thank you.

<script type="text/javascript">
$(function() {
    $('#slideshow').before('<ul id="nav">').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 0,
        pager:  '#nav',
        pagerAnchorBuilder: function(idx, slide) {
            return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>';
        }
    });
});
</script>