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

			// SLIDE 2
			var nS2 = new noobSlide({
				mode: 'vertical',
				box: $('slide_2'),
				items: $$('#slide_2 div.content_slide_items'),
				size: 40,
				handles: $$('#handles2 span'),
				autoPlay: true,
				fxOptions: {
					duration: 500,
					transition: Fx.Transitions.Quint.easeOut,
					wait: false
				},
				addButtons: {
					stop: $('stop2'),
					previous: $('prev2'),
					play: $('play2'),
					next: $('next2')
				},
				onWalk: function(currentItem,currentHandle){
					this.handles.removeClass('active');
					currentHandle.addClass('active');
				}
			});
		
});

