window.addEvent('domready',function(){
	
				var hs8 = new noobSlide({
					box: $('box'),
					startItem: 0,
					items: $ES('div','box'),
					size: 944,
				
					autoPlay: true,
				fxOptions: {
						duration: 1000,
						transition: Fx.Transitions.Quad.easeInOut,
						wait: false
					},

					buttons: {previous: $('prev8'),  next: $('next8') },
					onWalk: function(currentItem,currentHandle){
					$('prev8').setProperty('class','');
					$('next8').setProperty('class','');
					$('prev8').addClass('kapoprev'+this.currentIndex);
					$('next8').addClass('kaponext'+this.currentIndex);
					}
				});
				hs8.walk(0)

});