window.addEvent('domready',function(){

var nS6 = new noobSlide({
		box: $('box6'),
		items: [0,1,2,3,4,5,6,7],
		size: 590,
		handles: $$('#handles6 div'),
		handle_event: 'mouseenter',
		interval: 3000,
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.set('opacity',0.6);
			currentHandle.set('opacity',1);
		}
	});
nS6.walk(0);
});
