The 'speed' setting is actually the number of pixels the thing gets moved each time. Browsers don't deal well with decimal fractions of pixels, and if the negative number were to work, it would simply reverse the direction of scrolling.
So instead, in the head portion of this script, find:
Code:
setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll)
The number 30 is the number of milliseconds between each incremental movement of the scroller. Increase this number to slow things down even more. Too high of a number will result in jerkiness. 60 may be about the top 'safe' figure to use.
Bookmarks