Actually if you put the cursor over it on the left it scrolls to the right. If you put the cursor over it on the right, it scrolls to the left. If you put the cursor over the middle it stops.
You can configure it to simply pause when the cursor is over it, or to not react to the cursor at all. Where you have:
Code:
new rsscrawler('http://news.google.com/?output=rss', 'googlenews', {reverse: true});
The first param is the address of the feed. The second is the id of the target division where you want the scrolling feed to appear. The third param is an object used to configure the scroller's appearance/behavior. The available properties for it are described here:
http://www.dynamicdrive.com/dynamici...wler/index.htm
All of the properties used for controlling that scroller except the id (that's configured in the second param for this version) script can be used with this one.
So to make it so that it pauses on mouse over instead of reacting to the mouse for speed and direction you would add:
Code:
new rsscrawler('http://news.google.com/?output=rss', 'googlenews', {reverse: true, inc: 2 mouse: 'pause'
});
Bookmarks