$(document).ready(function(){		
	
	$('#slideshow').cycle({ 
		timeout: 5000,
		delay:   0, 
		speed:   2000, 
		before: onBefore 
	}); 
	
	function onBefore() { 
		//alert("Bye");
	}; 
	
});