$(document).ready(function() {
	$('#slideshow').cycle({
		after: onAfter,
		fx: 'fade',
		speed: 'slow', 
		timeout: 5000,
		random: 'true'			
	});
	
	function onAfter() {
		$('#slideshow').fadeIn()
	}
});
