i = 0
scrolltimer = null;
var speed = 2
function scroll()
{
i = i + speed
//alert('hello');
var div = document.getElementById("add1")
div.scrollTop = i
if (i > div.scrollHeight - 372) {i = 0}
t2=setTimeout("scroll()",100)
}


