Cycle plugin; allowPagerClickBubble

Cycle plugin; allowPagerClickBubble

Hi,

I'm using the cycle plugin on a wrapper with some images in it, these images are wrapped in an anchor. I'm using the plugin with timeout: 0; so the idea is that current image itself is a link to the next picture. So what I want is that when you click an anchor in the wrapper it follows its href attribute instead of doing nothing (default).

What I understand from the documentation " allowPagerClickBubble" should work for this right? I've tried it but it doesn't work, here's my init;

  1. var $speed = 800;
  2. $('#picswrapper').cycle(
  3. {
  4. fx:     'fade', 
  5. speed:  $speed, 
  6. timeout: 0,
  7. prev:   $("#gcontrols a:eq(0)"),
  8. next:   $("#gcontrols a:eq(1), #picswrapper"),
  9. allowPagerClickBubble: true,
  10. startingSlide: 2,     // zero-based index of the first slide to be displayed 
  11. after:   onAfter
  12. });

startingSlide doesn't work either, it just starts with the first slide regardless of the index... Anyone who could help me with this?  Thanks :)