$(function() {
    
    $('#slideshow').cycle({
    	timeout: 2000,
        speed: 4000,
        before: onBefore
    });
    
    function onBefore() {
        $('#title').html(this.alt);
    }
});
