[jQuery] Show(1500) flicking on Firefox 1.0 and 2.0

[jQuery] Show(1500) flicking on Firefox 1.0 and 2.0


Hi All,
I am trying to fade in a table on a page when a page loads
    $(document).ready(function(){
        $('#mainTable').hide().show(1500);
    });
This works exactly as expected in IE, but for some reason in Firefox
there are 2 issues.
First of all instead of actually fading in, it flies in form the right
(which is kind of ok, since it's better then nothing, but I wanted it
to fade in).
Problem 2, after it's in position it briefly flickers off and on and
then finally stays. Any ideas?
-Roman