[jQuery Cycle] Links in Slides

[jQuery Cycle] Links in Slides

Hi,

I'm using the jQuery Cycle Plugin (Great!) with divs, but I've got a problem:
U can only click the first link because the Plugin only reduces the opacity.

Is there any possibility to get the links working?

Thanks for help

Till

PS: Sry about my English, I'm a 13-years-old student from Germany...

  1. $('#slides').cycle({
  2. prev: '#prev',
  3. next: '#next',
  4. speed: 500
  5. });
  1. <div id="slides">
  2.       <div class="img">
  3.             <img src="xyz.jpg" />
  4.             <a href="download/xyz.full.jpg">Download</a>
  5.       </div>
  6.       <div class="img">
  7.             <img src="xyz.jpg" />
  8.             <a href="download/xyz.full.jpg">Download</a>
  9.       </div>
  10.       <div class="img">
  11.             <img src="xyz.jpg" />
  12.             <a href="download/xyz.full.jpg">Download</a>
  13.       </div>
  14. </div>