window.addEvent('domready',function(){
		var mathilde = new noobSlide({
			box: $('boiteImg2'),
			//nombre de pas
			items: [1,2,3,4,5],
			autoPlay: true,
			items: $ES('div','boiteImg2'),
			//Largeur animation
			size: 550,
			handles: $ES('span','choix'),
			onWalk: function(currentItem,currentHandle){
				$('info').setHTML(currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});

});	