window.addEvent('domready',function(){
		var hs2 = new noobSlide({
			box: $('box2'),
			items: [1,2,3,4,5,6,7,8,9,10,11],
			interval: 3000,

			buttons: {
				previous: $('prev1'),
				play: $('play1'),
				stop: $('stop1'),
				next: $('next1')
			}
		});
		//prev next botones
		hs8.addActionButtons('previous',$ES('.prev','box8'));
		hs8.addActionButtons('next',$ES('.next','box8'));
		//handle botones
		var handles8_more = $ES('span','handles8_more');
		hs8.addHandleButtons(handles8_more);
		//
		hs8.walk(0)

	});