$(document).ready(function() {
  $('#slideshow').cycle({
    fx: 'fade',
    speed: 1000,
    timeout: 3500,
    pause: 1,
    pager: '#pager',
    slideExpr: 'img',
    before: onBefore
  });
});

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