function onBefore() { 
	$('.slideshow').animate( {'height': this.height+'px'}, 1000, function () { } );
	/* $('#contentArea #bijschrift').html('<h3>' + this.alt + '</h3>'); */
}
$(document).ready(function() { 
	$('.slideshow').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 7000,
    	before:  onBefore
	});

});
