$(function() {
    $('#slideshow').before('<ul id="nav">').cycle({
    	fx:		'fade',
    	prev:	'#prev',
    	next:	'#next',
    	speed:	'slow',
    	timeout:8000,
    	pager:	'#nav',    	
    	pagerAnchorBuilder: function(idx, slide) {
            return '<li><a href="#"></a></li>';
        }
    });
    
});
