window.addEvent('domready',function(){
	
	if( $('diapoActus') ) {

		totalDivActus = $('diapoActus').getChildren('div').length;
		for (var i=1;i<=totalDivActus;i++)
		{
			if(i==1) classHtml='active';
			else classHtml='';
			/*var a = new Element('a',{'html':i,'class':classHtml});
			a.inject($('diapoLien'));
			*/
		}
	
		var V6 = new viewer($('diapoActus').getChildren(),{ 
				/*onWalk: function(current_index){
					handles6.removeClass('active');
					handles6[current_index].addClass('active');
				},*/
				mode: 'alpha',
				interval: 8000
			});
		/*var handles6 = $$('#diapoLien a');
		handles6.each(function(el,i){el.addEvent('click',V6.walk.bind(V6,[i,true]))});
		*/
		V6.play(true);	
	}
	
    });
