http://jsfiddle.net/2gktS/21/
essentially the jfiddle there displays what is happening. I used span tags around the images to enable a text field, beneath the images in the slider, to get the text to change with the image. It works, but now I'm using thumbnails as the pager it has broken.
Is there a way to get them working with the span tags in place??
EDIT- the js I'm using my page:
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow')
.cycle({
fx: 'fade', speed: 2500, pause: 1, next: '#next',
prev: '#prev', pager: '#pagernav',
// callback fn that creates a thumbnail to use as pager anchor
pagerAnchorBuilder: function(idx, slide) {
return '<a href="#"><img src="' + $(slide).attr('rel') + '" width="50" height="26" /></a>';
}
});
$('#pauseButton').click(function() {
$('.slideshow').cycle('pause');
});
$('#resumeButton').click(function() {
$('.slideshow').cycle('resume');
});
});
</script>