    $('#slideshow').cycle({
			fx:     'fade',
			speed:  'slow', 
			timeout: 3000,
			prev:   "#prev",
			next:   "#next",
			pause: 	1
    });
/*		
		$('#actionSlide').click(function() {
			if ($(this).hasClass("actionstart")) {
					$('#gallery').cycle('pause');
					$(this).removeClass("actionstart");
					$(this).addClass("actionstop");
					$(this).html("Lire");
			}
			else {
					$('#gallery').cycle('resume');
					$(this).removeClass("actionstop");
					$(this).addClass("actionstart");
					$(this).html("Pause");
			}
		});

*/

