$(function(){
    $('#slideshow').before('<div id="nav" class="nav">').cycle({
        fx:     'fade',
		speed: '1000',
        timeout: 0,
        pager:  '#nav',
		
		pagerAnchorBuilder: function(idx, slide) { 
			return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>'; 
		} 
    });

    $("#slideshow").show(0, function(){});

})


