window.addEvent('domready',function(){
	//RADIO
	var dots = $$('#dotsRadio span');
	var slide = new noobSlide({
		box: $('slideRadio'),
		items: $$('#slideRadio div'),
		size: 292,
		addButtons: {previous: $('btnPrecedentRadio'), next: $('btnSuivantRadio') },
		onWalk: function(currentItem,currentHandle){
			$$(this.handles,dots).removeClass('active');
			$$(currentHandle,dots[this.currentIndex]).addClass('active');
		}
	});
	//more "previous" and "next" buttons
	slide.addHandleButtons(dots);
	slide.walk(0,false,true);
});