	window.addEvent('domready',function(){

		//SAMPLE 4 (walk to item)
		var nS4 = new noobSlide({
			box: $('box4'),
			items: $$('#box4 div'),
			size: 570,
			autoPlay: true,
			interval: 5000,
			items: [0,1,2,3,4,5,6],
			handles: $$('#handles4 div'),
			onWalk: function(currentItem,currentHandle){
		$('info4').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
});

