I have a jquery animate function with a callback that isn't firing, I think it's something simple that another pair of eyes will pick up quickly. This is the code:
$('#base_back_img').animate({
width:372,
height:389,
marginLeft:0,
paddingTop:0,
marginTop:1
}, {duration:300, queue:false},
function() {
$('#menu-text').css({
display:'block'
});
$('#mini-menu').fadeOut();
});