function goAnimateNewsTicker()
{
    who = document.getElementById("homeEntries");
    if(who != undefined)
    {
        //alert(who.offsetLeft);
        aktiv = window.setInterval("animate()", 18);
    }
}

function animate()
{
    who = document.getElementById("homeEntries");
    if(who.offsetLeft < 750)
    {
        now            = who.offsetLeft + 1;
        who.style.left = now+"px";
    }
    else
    {
        who.style.left = "-500px";
    }
}
