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

		// 1
		var nS1 = new noobSlide({
			box: $('box1'),
			items: $$('#box1 div'),
			size: 750,
			handles: $$('#handles1 span'),
			onWalk: function(currentItem,currentHandle){
				$('info1').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
		
		// 2
		var nS2 = new noobSlide({
			box: $('box2'),
			items: $$('#box2 div'),
			size: 750,
			handles: $$('#handles2 span'),
			onWalk: function(currentItem,currentHandle){
				$('info2').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
		
		// 3
		var nS3 = new noobSlide({
			box: $('box3'),
			items: $$('#box3 div'),
			size: 750,
			handles: $$('#handles3 span'),
			onWalk: function(currentItem,currentHandle){
				$('info3').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});


	});