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

			// SLIDE 4
			var nS4 = new noobSlide({
				mode: 'horizontal',
				box: $('slide_4'),
				items: $$('#slide_4 div.content_slide_items'),
				size: 240,
				handles: $$('#handles4 span'),
				autoPlay: true,
				fxOptions: {
					duration: 1000,
					transition: Fx.Transitions.Quint.easeOut,
					wait: false
				},
				addButtons: {
					stop: $('stop4'),
					previous: $('prev4'),
					play: $('play4'),
					next: $('next4')
				},
				onWalk: function(currentItem,currentHandle){
					this.handles.removeClass('active');
					currentHandle.addClass('active');
				}
			});
		
});

