Very similar problems experienced here. As well as accordion, my JQuery sliders were also failing. I fixed it by removing some code from my application. I got this code from D. Crockford.
Object.prototype.beget = function () { // thanks Crockford function F() {} F.prototype = this; return new F(); }; I guess there is some incompatibility between Object.prototype and JQuery.