
		$(function() {
		        
		    $('#slideshow').after('<div id="nav" class="nav">').cycle({
		        fx:     'fade',
		        speed:  'slow',
		        timeout: 4000,
		        pager:  '#nav',
		        before: onBefore
		    });
		    
		        function onBefore() {
		        $('#title').html(this.alt);
		    }
		});
