$(document).ready(function() {
  $('#slideshow').cycle({
    fx:'fade',
    speed:  1000,
    timeout: 5000,
    prev:   '#prima',
    next:   '#dopo', 
    before:  onBefore, 
    after:   onAfter
		
  });
});

function onBefore() { 

  $('#descrizione').html('<p>' + this.alt + '<\/p>');
}
function onAfter() {
  $('#descrizione').fadeIn('1000');
  $('#descrizione').html('<p>' + this.alt + '<\/p>');
}
