jquery enchant destroys toggle?
toggle: function(){
if(!arguments[0] || (arguments[0].constructor == Number || /
(slow|fast)/.test(arguments[0])))
return this._toggle.apply(this, arguments);
else {
var o = arguments[1] || {}; o['mode'] = 'toggle';
return this.effect.apply(this, [arguments[0], o, arguments[2]
|| o.duration, arguments[3] || o.callback]);
}
},
this piece of code seems to write over the jquery core toggle event. I
usally pass 2 anon functions to toggle to be exectuted every other
click ( http://docs.jquery.com/Events/toggle#fnfn )