// Content Slide JS

window.addEvent('domready',function(){
		

		var nS4 = new noobSlide({
			box: $('box'),
			items: $$('#box div'),
			size: 835,
			handles: $$('#handles span'),
			onWalk: function(currentItem,currentHandle){
				$('info').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});

		

	});