function startpage() {
        mactu1 = document.getElementById("div_actu1");
        hactu = parseInt(mactu1.offsetHeight);
        affactu = true;
    if (hactu > document.getElementById("div_actu_cont").offsetHeight) {
            affactu = true;
            posactu = 0;
            sepactu = 15;
            mactu2 = document.getElementById("div_actu2");
            mactu2.style.top = hactu + sepactu + "px";
        setTimeout("actuanim()", 2000);
    }
}
function actuanim() {
    if (affactu) {
            posactu-= 1;
        if (posactu < - (hactu + sepactu)) {posactu = 0;}
            posactu2 = Math.round(posactu);
            mactu1.style.top = posactu2 + "px";
            posactu2+= hactu + sepactu;
            mactu2.style.top = posactu2 + "px";
    }
    setTimeout("actuanim()", 30);
}
function stopactu() {affactu = false;}
function startactu() {affactu = true;}
