$(function() {
  $('.cycle')
	.after('<div id="slide-nav">')
	.cycle({ 
	    fx:     'scrollHorz', 
	    speed:  'slow', 
	    timeout: 10000, 
	    pager:  '#slide-nav',
		pagerAnchorBuilder: function(index, el) {
	    return '<a href="#"> </a>'; // removes the numbers that default when using pager
    	}
	}); 
});

