$(function() {
  $('#slideshow').after('<ul id="nav">').cycle({
    fx:     'fade',
    speed:  2000,
    timeout: 7000,
    pager:  '#nav',

    //callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
      return '<li><a href="#"></a></li>';
		} 
  });
});
