$(function() {
  $('#slideshow ul').cycle({
    pager:  '#slideshow-nav',   
     
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
        return '<span><a href="#">&nbsp;</a></span>'; 
    }   
  });
  
});

