var scrolltimer=null;

function nscroll() {
var con=document.getElementById("newsfeed_content");
var conheight=con.offsetHeight;

con.style.top=(con.offsetTop-1)+"px";

scrolltimer=window.setTimeout('nscroll()',40);

if (con.offsetTop<=conheight-(conheight*2)) {
con.style.top="360px";
}

}


function stopnscroll() {
clearTimeout(scrolltimer);
}

