I have a simple set of two buttons that when hovered should make a div move up and down to simulate a scrolling effect:
$(\"#down\").hover(function () {
$(\
You'll need to set the animations parameter to the divs actual height jQuery .height() method
You should change your mouse events bindings on "mouseenter" and "mouseleave" and then with "mouseleave" you can stop a jQuery element animation with the jQuery .stop() method
You can calculate this with the jQuery .height() method too.