// JavaScript Document

$(function() {

    
    $('#slideshow3').cycle({
        delay: 5500,
        speed: 3000,
        before: onBefore
    });
    
    function onBefore() {
        $('#title').html(this.alt);
    }
});