$(function() {
        
    $('#slideshow').after('<div id="gallery-nav" align="center" class="gallery-nav">').cycle({
        fx:     'fade',
        speed:  500,
        timeout: 0,
        pager:  '#gallery-nav',
        before: onBefore,
		next: '.next'
    });
    
        function onBefore() {
        $('#title').html(this.alt);
    }
});
