Forse ti conviene fare una cosa diversa:
codice:
var sp=0;
var abilsc = true;
function swtScroll() {
  if(abilsc) {
    scrtext=document.getElementById?document.getElementById("sctext"):document.all["sctext"];
    maxp=scrtext.offsetHeight?scrtext.offsetHeight:scrtext.style.pixelHeight;
    if (sp<-maxp) sp=0;
    sp--;
    scrtext.style.top=sp;
  }
setTimeout('swtScroll()',30); // più è alto il numero meno è veloce lo scroll
}
if (!document.layers) window.onload=swtScroll;
Poi sul link od oggetto che ti interessa rendere attivo con il mouse:
onmouseover="abilsc=false;" onmopuseout="abilsc=true;"