$(function() {
    $('#slideshow1').cycle({
		timeout: 2300,
		delay: 1,
        speed: 500,
		prev:   '#prev',
        next:   '#next',
		before: onBefore
		});
    function onBefore() {
        $('#title').html(this.alt);
    }
});