window.addEvent('domready',function(){
	var ns = new noobSlide({
		box: $('box4'),
		items: $$('#box4 div'),
		size: 550,
		handles: $$('#handles4 span'),
		onWalk: function(currentItem,currentHandle){
			//$('info4').set('html',currentItem.getFirst().innerHTML);
			this.handles.removeClass('active');
			currentHandle.addClass('active');
		}
	});
});