Code:
<a href="javascript:scroller.scrollAmount=scroller.scrollAmount/1;">slow</a>
That's dividing it by one. Any number divided by one equals itself. Try:
Code:
<a href="javascript:scroller.scrollAmount=(scroller.scrollAmount-1);">slow</a>
Or even:
<a href="javascript:scroller.scrollAmount=parseInt(scroller.scrollAmount)-1;">slow</a>
If neither of these work, I'd need to see the full script in action to determine the problem(s).
Please post a link to the page on your site that contains the problematic script so we can check it out.
Bookmarks