$(document).ready(function() {

    $('.slideshow')
	.after('<div id="nav">')
	.cycle({
		fx: 'fade',
		speed: 500,
		// change the speed of the banners
		timeout: 4500,
		pause: 1,
	    pager: '#nav',
        // callback fn that creates a thumbnail to use as pager anchor
        pagerAnchorBuilder: function(idx, slide) {
            return '<li><a href="#"></a></li>';
        }
	});
});

