		/* <![CDATA[ */
			function startTPNiceSlideShow() {
				var TPNiceSlideShow = new TPSlideShowClass($('TPNiceSlideShow'), {
					timed: true,
					showInfopane: true,
					showMenu: true,
					embedLinks: true,
					fadeDuration: 500,
					readMore: true,
					readMoreText: 'En savoir plus',
					showTitle: true,
					titleLink: true,
					showDescription: true,
					slideInfoZoneOpacity: 0.85,
					scrollBar: true,
					itemCount: 10,
					scrollBarContent:	$('TPNiceSlideShowMenuWrp'),
					scrollBarArea: $('tpniceslideshow_scrollbar'),
					scrollBarHandle: $('tpniceslideshow_handle'),
					delay: 6000
				});
			}
			window.onDomReady(startTPNiceSlideShow);

			window.addEvent('domready', function(){ 
				var totIncrement		= 0;
				var increment			= 129;
				var maxRightIncrement	= increment*(-3);
				var fx = new Fx.Style('myList', 'margin-left', {
					duration: 1000,
					transition: Fx.Transitions.Back.easeInOut,
					wait: true
				});

				//-------------------------------------
				// EVENTS for the button "previous"
				$('previous').addEvents({ 
					'click' : function(event){ 
						if(totIncrement<0){
							totIncrement = totIncrement+increment;
							fx.stop();
							fx.start(totIncrement);
						}
					}
				 });

				//-------------------------------------
				// EVENTS for the button "next"
				$('next').addEvents({ 
					'click' : function(event){ 
						if(totIncrement>maxRightIncrement){
							totIncrement = totIncrement-increment;
							fx.stop();
							fx.start(totIncrement);
						}
					}
				});
			});
		/* ]]> */
