// galleria noobSlide
	window.addEvent('domready',function(){
		//SAMPLE 1 (auto, every 5 sec)

		$kontatore = 0;
		var nS1 = new noobSlide({
			box: $('box1'),
			items: $$('#box1 span'),
			size: 400,
			autoPlay:true,
			handles: $$('#handle_slide span'),
			interval: 6000,
			fxOptions: {
				duration: 1200,
				transition: Fx.Transitions.Back.easeInOut,
				wait: true
			},
			addButtons: {
				previous: $('prev'),
				next: $('next')
			},

			onWalk: function(currentItem,currentHandle){
				//style for handles
				$$(this.handles).removeClass('active');
				$$(currentHandle).addClass('active');
				//$('home_contenuti').set('html', "");
				//$('home_contenuti').set('html', testo_slider[this.currentIndex]);
			}

		});
		

	});

