window.addEvent('domready',function(){
		var nS4 = new noobSlide({
			mode: 'vertical',
			box: $('box4'),
			items: $$('#box4 div'),
			autoPlay: true,
			size: 150,
			handles: $$('#handles4 span'),
			addButtons: {
				previous: $('prev5'),
				next: $('next5')
			},
			onWalk: function(currentItem,currentHandle){
				$('info4').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
						}
		});
	});
	
