function actus() {

	if (!$('actu2')) {
		return;
	};

	var nbActuMax = 5;
	var largeurActu = 514;
	var tempsDefil = 1000; //1500
	var delay = 5000;//6500
	var timer;
	var actuCourante = 1;
	var actuPrecedente = 0;


	if ($('mod_newslist')) {
		$('mod_newslist').addEvent('mouseenter', function(){
			clearInterval (timer);
		});
		
		$('mod_newslist').addEvent('mouseleave', function(){
			timer = setInterval(actuSuivante, delay);
		});
	};

	function afficherActu(id) {
		clearInterval (timer);
		timer = setInterval(actuSuivante, delay);
				
		var fxCourant = new Fx.Styles("actu"+id, {duration:tempsDefil, wait:false});
		fxCourant.options.transition = Fx.Transitions.Cubic.easeOut;
		
		var fxPrecedent = new Fx.Styles("actu"+actuPrecedente, {duration:tempsDefil, wait:false});
		fxPrecedent.options.transition = Fx.Transitions.Cubic.easeOut;
		
		var fxPremier = new Fx.Styles("actu1", {duration:tempsDefil, wait:false});
		fxPremier.options.transition = Fx.Transitions.Cubic.easeOut;
		
		if ($("actu"+id)) {
			
			$("actu"+id).style.top = largeurActu+"px";
				
			fxCourant.start({
				'top': 22
			});
			
			fxPrecedent.start({
				'top': -largeurActu
			});
		} else if ($("actu"+actuPrecedente)) {
			fxPrecedent.start({
				'top': -largeurActu
			});
			
			$("actu1").style.top = largeurActu+"px";
			actuCourante = 1;
			
			fxPremier.start({
				'top': 22
			});
		}
	}

	function actuSuivante() {
		actuPrecedente = actuCourante;
		actuCourante ++;
		if (actuCourante == nbActuMax+1) {actuCourante=1;}
		afficherActu(actuCourante);
	}
	
	afficherActu(0);
}
