$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		after: onAfter
	});
});
function onAfter() { 
    $('#slideshow_text').html('<h3>' + this.alt + '</h3>') 
}