function MpUp(elmt) {elmt.stop().animate({ bottom: "5px"}, 220)}
function MpDown(elmt){elmt.stop().animate({ bottom: "0"}, 220);}

$(document).ready(function(){$("#mp_anim img").hover(function(){MpUp($(this))},function(){MpDown($(this))})});
