
//javascript rolling effect using div hidding
function newsScroll()
{
news.style.pixelTop=(news.style.pixelTop-1)%(news.clientHeight/2);
timer1=setTimeout('newsScroll()',50)  //rolling speed
}

newsScroll();// JavaScript Document

function wait()
{
    clearInterval(timer1);
}