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

	var info6 = $('noobSlide_box').getNext().set('opacity',0.5);
    var nS6 = new noobSlide({
			mode: 'vertical',
			box: $('noobSlide_box'),
			items: [0,1,2,],
			size: 345,
			handles: $$('#noobSlide_handles div'),
			handle_event: 'mouseenter',
			
			button_event: 'click',
			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Back.easeOut,
				wait: false
			},
			onWalk: function(currentItem,currentHandle){
				info6.empty();
				this.handles.set('opacity',0.3);
				currentHandle.set('opacity',1);
			}
		});
		//walk to next item
		nS6.next();
	});