// Settings for my Jquery Cycle Display

$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade', // choose your transition type
		prev:   '#prev', 
    	next:   '#next', 
		nowrap:  0,
		after:   onAfter,
    	timeout: 0 
	});
});

function onAfter() { 
    $('#output').html(this.alt); 
}