[jQuery] jcarousel : bug patch

[jQuery] jcarousel : bug patch


Hi, i had a little problem with jcarousel.
With firefox, the scroll caused the fisrt slided item to have a width
of 0px a few ms.
so I've putten an animate on the width modification, (wich make Ie
bug) so, there is the code.
ps : Thanks all of you, jquery is so great :)
remove: function(i) {
var e = this.get(i);
// Check if item exists and is not currently visible
if (!e.length || (i >= this.first && i <= this.last))
return;
var d = this.dimension(e);
if (i < this.first)
this.list.css(this.lt,
$jc.intval(this.list.css(this.lt)) + d + 'px');
            if ($.browser.mozilla) {
                var width = this.wh;
                this.list.animate({width: $jc.intval(this.list.css(this.wh)) - d +
'px'}, 50);
                e.remove();
            } else {
                e.remove();
                this.list.css(this.wh, $jc.intval(this.list.css(this.wh)) - d +
'px');
            }
},