window.addEvent('domready',function(){
		var handles8_more = $$('#handles8_more span');
		var nS8 = new noobSlide({
			box: $('box8'),
			items: $$('#box8 h3'),
			size: 410,
			autoPlay: true,
			handles: $$('#handles8 span'),
			onWalk: function(currentItem,currentHandle){
				//style for handles
				$$(this.handles,handles8_more).removeClass('active');
				$$(currentHandle,handles8_more[this.currentIndex]).addClass('active');
			}
		});
		nS8.walk(0,false,true);

	});
