window.addEvent('domready',function(){
		
		var nS1 = new noobSlide({
			box: $('box1'),
			items: [0,1,2,3,4],
			handles: $$('#handles4 span'),
			size: 988,
			interval: 9000,
			autoPlay: true
		});
		
		var nS4 = new noobSlide({
			box: $('box4'),
			items: $$('#box4 span'),
			size: 988,
			handles: $$('#handles4 span'),
			startItem: 0,
			
			onWalk: function(currentItem,currentHandle){
				//$('info4').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
		ns4.next();

	});