В jquery js найдите этот код и переключите его
// Simple 'hide' function
hide: function() {
// Remember where we started, so that we can go back to it later
this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
this.options.hide = true;
// Begin the animation
if ($.browser.msie){
this.custom(this.cur(), 1);
}
else{
this.custom(this.cur(), 0);
}
},