$(document).ready(function() {
	$('#panoramic').cycle({ 
	    delay:  4000, 
	    speed:  900, 
	    before: onBefore 
	}); 

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

	
});
