jQuery(document).ready(function($) {
																
	$('#slideshow').cycle({ 
    delay:  4000, 
    speed:  500, 
    before: onBefore 
	}); 
 
	function onBefore() { 
			$('#slideshow-caption') 
					.html(this.alt); 
	};

});
