	var endpagenews=0;
	window.addEvent('domready',function(){
		
		//SAMPLE 8
		
		var hs8 = new noobSlide({
			box: $('box8'),
			startItem: 1,
			items: $ES('h3','box8'),
			size: 170,
			autoPlay: true,
			onWalk: function(currentItem,currentHandle){
				
				$$(this.handles,handles8_more).removeClass('active');
				$$(currentHandle,handles8_more[this.currentIndex]).addClass('active');
				
				
				$('newspage_'+endpagenews).style.color='white'; 
				$('newspage_'+this.currentIndex).style.color='red';
				endpagenews=parseInt(this.currentIndex);
				//alert(this.currentIndex);
			}
		});
		//more handle buttons
		var handles8_more = $ES('span','handles8_more');
		hs8.addHandleButtons(handles8_more);
		//
		hs8.walk(0)

	});
