//SAMPLE Mathilde
window.addEvent('domready',function(){
			var nS4 = new noobSlide({
			box: $('boiteImg'),
			items: $$('#boiteImg div'),
			autoPlay: true,			
			size: 700,
			handles: $$('#choix span'),
			onWalk: function(currentItem,currentHandle){
				$('info4').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});

});		




