Blind/Toggle/Show/Hide doesn't run smoothly when autoclicked

Blind/Toggle/Show/Hide doesn't run smoothly when autoclicked


Hey guys I'm having some trouble using the toggle or blind or show
function automatically. They all work when I bind them to a button
and physically click the button and they kinda work when I trigger the
click() function to run automatically, but it's really jerky and not
smooth. For example here is my code:
$("#test").click(function() {
            $("#test2").toggle("blind",500);
            return false;
        });
    $("#test").click(); <-------This right here runs but does not blind
smoothly, just appears with little to no animation.
Is this a bug or am I missing something?
Thanks
Eric