$(function() {
    $('#rftrbox').cycle({
        timeout: 5000,
        speed: 500,
        before: onBefore
    });
	
	    $('#flazzy').cycle({
        timeout: 8900,
        speed: 700,
        before: onBefore
    });

    function onBefore() {
        $('#title').html(this.alt);
    }
});