	window.addEvent('domready',function(){
		//SAMPLE 4 (walk to item)
		var nS4 = new noobSlide({
			box: $('box4'),
			items: $$('#box4 div'),
			size: 600,
			handles: $$('#handles4 span'),
			onWalk: function(currentItem,currentHandle){
				$('info4').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			
			}
		});
		var nS4 = new noobSlide({
			box: $('box5'),
			items: $$('#box5 div'),
			size: 600,
			handles: $$('#handles5 span'),
			onWalk: function(currentItem,currentHandle){
				$('info5').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			
			}
		});	
		var nS4 = new noobSlide({
			box: $('box6'),
			items: $$('#box6 div'),
			size: 600,
			handles: $$('#handles6 span'),
			onWalk: function(currentItem,currentHandle){
				$('info6').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			
			}
		});			

	});