This works:
$("#formbottom").slideUp(speed,'swing',function(){
openSubmitting();
});
This doesn't:
$("#formbottom").slideUp(speed,'swing',
openSubmitting()
);
When you have a callback, do you always have to have an anonymous function in there? Can't you just put the function you want to call?