	$(document).ready(
	function() {
    	$('.rotate')
    	.cycle({
			fx: 'fade', 
			continuous: 0,
			timeout: 8000,
			speed: 500,
			pager:  '#rotator',
			after:   onAfter
		});
function onAfter() { 
    $('#rotator_title').html("") 
        .append('<p>' + this.alt + '</p>' + '<br />' + this.title); 
}

	});
