window.addEvent('domready',function(){
	//SAMPLE 6 (on "mouseenter" walk)
	var info6 = $('box6').getNext().set('opacity',0.0);
	var startItem = 2;
	var nS6 = new noobSlide({
		mode: 'vertical',
		box: $('box6'),
		items: [0,1,2],
		size: 135,
		autoPlay: true,
		handles: $$('#handles6_1 div').extend($$('#handles6_2 div')),
		handle_event: 'mouseenter',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.addClass('nosel');
			currentHandle.removeClass('nosel');
		},
		startItem: startItem
	});
	//walk to next item
	nS6.next();
});

