$(document).ready(function() {
	$('#foto ul').cycle({
 			delay	: 500,
			speed	: 2000, 
			timeout	: 5000,
			before  : changeTitle
	});
});

function changeTitle()  
    {  
        var title = $(this).find('img').attr('alt');  
        var href = $(this).attr('href');  
          
        $('#slide-title').text(title).attr('href', href);  
    }  
