Firefox will not animate margin-left correctly. Instead, make the <ul> relatively positioned and use the left attribute.
So, instead of margin-left: -125px; use left: -125px; position: relative; left: -125px; position: relative;
And change the animation to:
$j('#fave_recent ul').animate({'left': 0}, 500);
This will work in all browsers.
source share