// JavaScript Document


	window.addEvent('domready',function(){

	// var tab=$$('#handles2 span');
	// tab.each(function(item, index){
		// var itemValue=item.innerHTML;
		// if(itemValue=='actuellement')
			// item.setStyles({ position: 'relative',
			// right: 119
			// });
		// else 
			// item.setStyle('marginLeft','77');
	// });
	


		//SAMPLE 1 (walk to item)
		var nS4 = new noobSlide({
			mode: 'vertical',
			
			box: $('box1'),
			autoPlay: true,
			items: $$('#box1 div a'),
			size: 608,
			handles: $$('#handles1 span'),
			interval: 10000,
			fxOptions: {
				duration: 2000,
				
				wait: false
			},
			onWalk: function(currentItem,currentHandle){
				$('info1').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});


	//SAMPLE 2 (walk to item)
		var nS5 = new noobSlide({
			mode: 'vertical',
			box: $('box2'),
			autoPlay: true,
			//startItem: 1,
			items: $$('#box2 div a'),
			size: 608,
			handles: $$('#handles2 span'),
			interval: 10000,
			fxOptions: {
				duration: 2000,
				
				wait: false
			},
			onWalk: function(currentItem,currentHandle){
				$('info2').set('html',currentItem.getFirst().innerHTML);
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
	

	});