﻿$(document).ready(function() {
	
	$('#slideshow').cycle({
	    fx:     'fade',
	    speed:   800,
	    timeout: 5000,
	    pager:  '#pager',
	    pause: true,
	    pagerAnchorBuilder: function(idx, slide) {
	        // return sel string for existing anchor
	        return '#pager li:eq(' + (idx) + ') a';
	    }
	});
	
  
});
