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

	var n1 = new noobSlide({
		box: $('stage1'),
		items: $$('#stage1 li'),
		size: 400,
		handles: $$('#handle1 li'),
		handle_event: 'mouseenter',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.set('opacity',0.3);
			currentHandle.set('opacity',1);
		}
	});
	
	var n2 = new noobSlide({
		box: $('stage2'),
		items: $$('#stage2 li'),
		size: 400,
		handles: $$('#handle2 li'),
		handle_event: 'mouseenter',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.set('opacity',0.3);
			currentHandle.set('opacity',1);
		}
	});
	
	var n3 = new noobSlide({
		box: $('stage3'),
		items: $$('#stage3 li'),
		size: 400,
		handles: $$('#handle3 li'),
		handle_event: 'mouseenter',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.set('opacity',0.3);
			currentHandle.set('opacity',1);
		}
	});
	
	var n4 = new noobSlide({
		box: $('stage4'),
		items: $$('#stage4 li'),
		size: 400,
		handles: $$('#handle4 li'),
		handle_event: 'mouseenter',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.set('opacity',0.3);
			currentHandle.set('opacity',1);
		}
	});
	
	var n5 = new noobSlide({
		box: $('stage5'),
		items: $$('#stage5 li'),
		size: 400,
		handles: $$('#handle5 li'),
		handle_event: 'mouseenter',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.set('opacity',0.3);
			currentHandle.set('opacity',1);
		}
	});
	
	var n6 = new noobSlide({
		box: $('stage6'),
		items: $$('#stage6 li'),
		size: 400,
		handles: $$('#handle6 li'),
		handle_event: 'mouseenter',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.set('opacity',0.3);
			currentHandle.set('opacity',1);
		}
	});
	
	var n7 = new noobSlide({
		box: $('stage7'),
		items: $$('#stage7 li'),
		size: 400,
		handles: $$('#handle7 li'),
		handle_event: 'mouseenter',
		fxOptions: {
			duration: 1000,
			transition: Fx.Transitions.Back.easeOut,
			wait: false
		},
		onWalk: function(currentItem,currentHandle){
			this.handles.set('opacity',0.3);
			currentHandle.set('opacity',1);
		}
	});
	
});