/*
$(function() {
    $('#slideshow').after('<ul id="nav">').cycle({
        fx:     'scrollLeft',
        speed:  'slow',
        pager:  '#nav',
        pagerAnchorBuilder: function(idx, slide) {
            return '<li><a href="#"><img src="' + slide.src + '" width="64" height="64" /></a>';
        }
    });
});
*/


$(document).ready(function() {
    $('#slideshow').cycle({
		fx: 'fade',
		speed:  'slow' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});