[jQuery] Hitting an error doing ajax in 1.1

[jQuery] Hitting an error doing ajax in 1.1

Anyone know if this is my doing or a bug?
I have a piece of code that fades out a div, loads some new content
using ajax, and then fades it back in. I just tested out the new 1.1
release and started getting an error: "fn.apply is not a function"
Here's the relevant chunk of code:
            $("#ajax_episodebox").fadeOut("normal",function() {
    var url = "/ajaxable/episodebox?episode=" + domaincode ;
    if(domaincode == 'overview') {
        url = url + "&franchise=" + franchise;
    }
    $("#ajax_episodebox").load(url, {}, function() {
        current_screen = 0;
        current_video = 0;
        $("#ajax_episodebox").fadeIn("normal");
        ajaxing = false;
    });
    activateEpBox(domaincode, franchise);
                
});
The error is happening on line 295 of the jquery source:
if ( fn.apply( obj[i], args || [i, obj[i]] ) === false ) break;
Does anyone have any ideas?
-doug
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/