window.addEvent('domready', function() {
	
	
	// noobslide
	var handles8_more = $$('#handles8_more span');
		var nS8 = new noobSlide({
			mode: 'vertical',
			box: $('box8'),
			items: $$('#box8 h3'),
			autoPlay: true,
			size: 100,
			//handles: $$('#handles8 span'),
			//addButtons: {previous: $('prev8'), next: $('next8') },
			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
				$('prev8').set('html','&lt;&lt; '+this.items[this.previousIndex].innerHTML);
				$('next8').set('html',this.items[this.nextIndex].innerHTML+' &gt;&gt;');
			}
		});		
});