That's easy enough to add. Near the end of the script, where it says:
Code:
}
loadedyes=1
}
window.onload=fillup
</script>
Add to it like so:
Code:
}
loadedyes=1
scrollspeed=2
moveleft()
}
window.onload=fillup
</script>
The number 2 for scrollspeed can be increased or decreased for a faster or slower initial scroll. The call for 'moveleft()' can be changed to 'moveright()' if you prefer. Then, to keep it scrolling onmouseout, find the function:
Code:
function stopmotion(e){
if ((window.event&&!crossmain.contains(event.toElement)) || (e && e.currentTarget && e.currentTarget!= e.relatedTarget && !contains_ns6(e.currentTarget, e.relatedTarget))){
if (window.lefttime) clearTimeout(lefttime)
if (window.righttime) clearTimeout(righttime)
movestate=""
}
}
Change it to this:
Code:
function stopmotion(e){
if ((window.event&&!crossmain.contains(event.toElement)) || (e && e.currentTarget && e.currentTarget!= e.relatedTarget && !contains_ns6(e.currentTarget, e.relatedTarget))){
scrollspeed=2
}
}
Once again, if you want it to be scrolling faster or slower than 2 when the mouse is not over it, set the scrollspeed here accordingly. It would probably be best to use the same value for scrollspeed here as above.
Bookmarks