First off, my question is really similar to a question posted here, with the difference being I am using wordpess and the nextgen gallery plugin to manage my images, which writes images thumbnail images as such:
mygallery/image1.jpg
mygallery/image2.jpg
etc...
and thumbnails like this:
mygallery/thumbs/thumbs_image1.jpg
mygallery/thumbs/thumbs_image2.jpg
etc...
so what I am looking to do is set the source of the thumbnail. Here's my code:
<script type="text/javascript">
$('#slideshow').after('').cycle({fx:'fade',speed:'slow',timeout: 0,pager: '#nav',
// callback fn that creates a thumbnail to use as pager anchor
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>'; });
Any help would be greatly appreciated.