This jQuery plugin provides scrolling functionality for text-based JavaScript arrays.
Requires jQuery UI - http://ui.jquery.com/download_builder/ - Effect "Slide".
Usage
Declare a JavaScript array:
var arr = ["one", "two", "three", " four"];
Parameters:
Optionally, you can set the scroll speed. The default is 1000 ms.
You need to create an external div, an internal div to hold the scrolling pane, and 2 navigation buttons.
An example:
$(document).ready(function() {
$("#outsideContainer").simpleScroll(arr, "#slidefx", "#doSlidePrev", "#doSlideNext", {speed:1000});
});