	window.addEvent('domready',function(){

		var nS4 = new noobSlide({
			box: $('headerbox'),
			items: $$('#headerbox div'),
			size: 698,
			handles: $$('#handles img'),
			onWalk: function(currentItem,currentHandle){
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});

	});