$(document).ready(function() {

$(function() {
    $('#slideshow').cycle({ delay: 5, speed: 3000, before: onBefore });
    function onBefore() { $('#title').html(this.alt); }
});

});


