$(function() {
	$('.rotate-img .img').cycle({ 
		timeout: 3000,
        speed: 2000,
		pause:  1,
        before: onBefore
	});

    function onBefore() {
        $('#title').html(this.alt);
    }
});