	window.addEvent('domready',function(){

		//SET TOOL
		var handles8_more = $$('#handles8_more span');
		var nS8 = new noobSlide({
			box: $('box8'),
			items: $$('#box8 h3'),
			size: 730,
			onWalk: function(currentItem,currentHandle){
				//style for handles
				$$(this.handles,handles8_more).removeClass('active');
				$$(currentHandle,handles8_more[this.currentIndex]).addClass('active');
				//text for "previous" and "next" default buttons
			}
		});
		//more "previous" and "next" buttons
		nS8.addActionButtons('previous',$$('.prev'));
		nS8.addActionButtons('next',$$('.next'));
		nS8.walk(0,false,true);
		
		
	
		
	});
	
	
	
