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

		//SAMPLE 4 (walk to item)
		var nS4 = new noobSlide({
			box: $('box4'),
			items: $$('#box4 div'),
			size: 450,
      interval: 9000,
			autoPlay: true,
			stop: $$('#handles4 span'),
			handles: $$('#handles4 span'),
			onWalk: function(currentItem,currentHandle){
				this.handles.removeClass('active');
				currentHandle.addClass('active');
				this.autoPlay=false;
			}
		});

	});
