window.addEvent('domready',function(){
/*
			handles: $ES('span','handles8'),
			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').setHTML('&lt;&lt; '+this.items[this.previousIndex].innerHTML);
				$('next8').setHTML(this.items[this.nextIndex].innerHTML+' &gt;&gt;');
			}
		//more handle buttons
		var handles8_more = $ES('span','handles8_more');
		hs8.addHandleButtons(handles8_more);

			buttons: {previous: $('prev8'), play: $('play8'), stop: $('stop8'), playback: $('playback8'), next: $('next8') },
*/

		var hs8 = new noobSlide({
			box: $('box8'),
			startItem: 1,
                        items: $$('#box8 h2'),
			size: 953,
			autoPlay: true
		});
		//add "onpage" "previous" and "next" buttons
		hs8.addActionButtons('previous',$$('#box8 .prev'));
		hs8.addActionButtons('next',$$('#box8 .next'));
 		//
		hs8.walk(0)
});