i = 0
var speed = 1
function scroll() {
i = i + speed
var div = document.getElementById("news")
div.scrollTop = i
if (i > div.scrollHeight - 130) {setTimeout("i = 0",1000)}
t1=setTimeout("scroll()",85)
}

window.onload = scroll;
