// JavaScript Document
$(function() {    
    $('#slideshow2').cycle({
    	timeout:6000,
        delay: 2000,
        speed: 1000,
        before: onBefore
    });
    
    function onBefore() {
        $('#title').html(this.alt);
    }
});