	window.addEvent('domready',function(){

		var hs8 = new noobSlide({
			box: $('NSaktuality'),
			startItem: 0,
			items: $ES('h3','NSaktuality'),
			mode: 'vertical',
			size: 244,
			handles: $ES('span','handles8'),
			buttons: {play: $('NSplay'), stop: $('NSstop') },
			interval: 15000,
			onWalk: function(currentItem,currentHandle){
				//style for handles
				//this.handles.extend(handles8_more).removeClass('active');
				$$(currentHandle,handles8_more[this.currentIndex]).addClass('active');
			}
		});
		//more "previous" and "next" buttons
		hs8.addActionButtons('previous',$ES('.prev','NSaktuality'));
		hs8.addActionButtons('next',$ES('.next','NSaktuality'));
		//more handle buttons
		var handles8_more = $ES('span','handles8_more');
		hs8.addHandleButtons(handles8_more);
		//
		hs8.walk(0)

	});