[jQuery] Cycle plugin using named id's

[jQuery] Cycle plugin using named id's


Is it possible to use named links/ids to show a particular div when
using the pager function of the Cycle Plugin?
Also, I am unable to get several of the effects to work, specifically
any of the scroll effects (scrollLeft), turnLeft works. Currently
testing using the code below.
<script type="text/javascript">
$(function() {
$('#slideshow').cycle({
fx: 'fade',
speed: 'fast',
timeout: 0,
pager: '#nav',
pagerAnchorBuilder: function(idx, slide) {
// return sel string for existing anchor
return '#nav li:eq(' + (idx) + ') a';
}
});
});
</script>