$(function() {

	$('#slideshow1').cycle({
		fx:     'fade',
		speed:  1000,
		timeout: 3500,
		before: onBefore,
		continous: true
	});
	
	$('#slideshow2').cycle({
		fx:     'fade',
		speed:  1000,
		timeout: 4000,
		before: onBefore,
		continous: true
	});
	
		function onBefore() {
		$('#title').html(this.alt);
	}


});
