window.addEvent('domready',function(){

			// SLIDE 3
			var nS3 = new noobSlide({
				mode: 'horizontal',
				box: $('slide_3'),
				items: $$('#slide_3 div.content_slide_items'),
				size: 485,
				handles: $$('#handles3 span'),
				autoPlay: true,
				fxOptions: {
					duration: 1000,
					transition: Fx.Transitions.Quint.easeOut,
					wait: false
				},
				addButtons: {
					stop: $('stop3'),
					previous: $('prev3'),
					play: $('play3'),
					next: $('next3')
				},
				onWalk: function(currentItem,currentHandle){
					this.handles.removeClass('active');
					currentHandle.addClass('active');
				}
			});
		
});

