I want to add easing to this JQuery hover menu script, how can I do that?
$("#navi_bakery").hover(function(){
$("#navi_bakery img").animate({
paddingTop:"0px"
},100);
},function(){
$("#navi_bakery img").animate({
paddingTop:"17px"
},100);
});