var Marquee = function( args )
| Parameters: args | object with the following optional elements: |
| id | id of the html element to be turned to marquee |
| el | the html element |
| dir [_left_|right|up|down] | direction to move the content to |
| jump | how many pixels the content is jumped each step |
| wait | how many miliseconds to wait between each step |
| mouseStops | bool. default: true |
| callback | function to be called on events |
function callback(action, args) {...}
var Marquee = function( args )
Starts moving the content.
this.start = function()
Stops moving the content.
this.stop = function()
Should be called when the content has been changed dynamically.
this.changed = function()