j = 0
scrolltimer = null;
var speed = 2
function scroll1()
{
	//alert(j);
	if(j==0){
		j=(document.getElementById("add2").scrollHeight) - 375;

	}else{
		
		j = j - speed
	}
var div = document.getElementById("add2")
div.scrollTop = j
if (j < 0) {i = div.scrollHeight}
t1=setTimeout("scroll1()",100)
}
