<!--

var boxheight=80;
var boxwidth=162;
var speed=50;
var pixelstep=1;

var outer,inner,elementheight;

var w3c=(document.getElementById)?true:false;
var ie5=(document.all && w3c)?true:false;
var ns6=(w3c && navigator.appName.indexOf("Netscape")>=0)?true:false;
var goscroll=true;

function getElHeight(el){
	if(ie5)return (el.style.height)? el.style.height : el.clientHeight;
	else return (el.style.height)? parseInt(el.style.height):parseInt(el.offsetHeight);
}

function getPageLeft(el){
	var x;
	if(w3c){
		x = 0;
		while(el.offsetParent!=null) {
			x+=el.offsetLeft;
			el=el.offsetParent;
		}
		x+=el.offsetLeft;
		return x;
	}
}

function getPageTop(el){
	var y;
	if(w3c){
		y=0;
		while(el.offsetParent!=null) {
			y+=el.offsetTop;
			el=el.offsetParent;
		}
		y+=el.offsetTop;
		return y;
	}
}

function scrollbox(){
	if(goscroll){		
		inner.style.top=(parseInt(inner.style.top)-pixelstep)+'px';
		if(parseInt(inner.style.top)<2-elementheight)inner.style.top=boxheight+'px';
	}
}

function defilactu(){
	outer=document.getElementById('actu-box');
	inner=document.getElementById('actu-scroll');
	elementheight=getElHeight(inner);

	inner.style.top=(boxheight)+'px';
	inner.style.clip='rect(0px, '+(boxwidth)+'px, '+(elementheight)+'px, 0px)';
	inner.style.visibility="visible";
	
	setInterval('scrollbox()',speed);	
}


//-->