jquery cycle slideshow dots on slides

jquery cycle slideshow dots on slides

hello - i try now for days to success - but it don't works ;-(

i use the danland theme from drupal and have configured a slideshow… i only want to the dots on slideshow images (middle / bottom) so people can click through the slideshow… so far i tried mostly every example that i found on google… pager, pagination, etc…

maybe you guys could advise me or help to get these "dots, bullets" please??? below you will find my script, html and css…

Script:
  1. jQuery(document).ready(function($) {
  2.     $('.slideshow').cycle({
  3. fx: 'all' ,
  4. timeout: 8000,
  5. delay: 2000,
  6. pager: '#slide-pager',
  7. pagerEvent: 'mouseover',
  8. pauseOnPagerHover: true,
  9. pagerAnchorBuilder: function paginate(idx, el) {
  10.    return '<a class="nav' + idx + '" href="#" >&bull;</a>';
  11. }
  12. });

CSS:
  1. #nav {
  2.  width: 950px; /* to match width of .slideshow p */
  3.  margin: auto;
  4.  position: absolute;
  5.  left: 10px;
  6.  bottom: 20px; /* would normally be zero, but adding in 5px from #nav a + additional 5px for "padding" */
  7.  z-index: 10000;
  8. }
HTML:
  1. <?php if($is_front): ?>
  2. <div id="slideshow-wrapper">
  3. <div class="slideshow-inner">
  4. <div id="slideshow-preface">
  5. <div id="slide-pager-wrapper">
  6. <div id="slide-pager"></div>
  7. </div>
  8.  <?php if ($page['preface']): ?>
  9.           <div id="preface">
  10.             <?php print render ($page['preface']); ?>
  11.           </div><!-- end preface -->
  12.  <?php endif; ?>
  13. </div>
  14. <?php if ($page['highlighted']) : ?><div id="slideshow-bottom">
  15. <div id="mission"><?php print render ($page['highlighted']); ?></div></div><?php endif; ?>
  16. <div class="slideshow">
  17. <img src="<?php print $base_path . $directory; ?>/images/slideshows/objectflor-vinylboden.jpg" width="950" height="355" alt="slideshow 1"/>
  18. <img src="<?php print $base_path . $directory; ?>/images/slideshows/objectflor-buero.jpg" width="950" height="355" alt="slideshow 2"/>
  19. <img src="<?php print $base_path . $directory; ?>/images/slideshows/objectflor-wohnen.jpg" width="950" height="355" alt="slideshow 3"/>
  20. <img src="<?php print $base_path . $directory; ?>/images/slideshows/objectflor-schlafzimmer.jpg" width="950" height="355" alt="slideshow 3"/>
  21. <img src="<?php print $base_path . $directory; ?>/images/slideshows/malerarbeiten.jpg" width="950" height="355" alt="slideshow 3"/>
  22. <img src="<?php print $base_path . $directory; ?>/images/slideshows/pantone.jpg" width="950" height="355" alt="slideshow 3"/>
  23. </div>
  24. </div>
  25. </div>
  26. <?php endif; ?>

I would be so thankfull if you could help me ;-) ty and greets from germany….