// JavaScript Document

	window.addEvent('domready',function(){

			var nS4 = new noobSlide({
			box: $('box6news'),
			items: $$('#box6news div'),
			size: 500,
			handles: $$('#handles6news span'),
			onWalk: function(currentItem,currentHandle){
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});	

	});