window.addEvent('domready',function(){

	var fxOptions7 = {property:'left',duration:5000, transition:Fx.Transitions.Back.easeOut, wait:false}

	var nS4 = new noobSlide ({
		box: $('box4'),
		items: $$('#box4 div'),
		size: 930,
		autoPlay: true,
		interval: 7000,
		//fxOptions: fxOptions7,
		handles: $$('#handles4 span'),
		onWalk: function(currentItem,currentHandle){
			this.handles.removeClass('active');
			currentHandle.addClass('active');
		}
	});

});