Consider these two working functions. Is there any way to string these two together into one jQuery function?
$("#help").mouseenter(function(){
$(this).animate({bottom: '+=100',});
});
$("#help").mouseleave(function(){
$(this).animate({bottom: '-=100',});
});
See http://api.jquery.com/hover/