[jQuery] hide() and slideDown() question

[jQuery] hide() and slideDown() question


Hi All,
Essentially what I'm trying to do is insert some new html after a
specific element. What I would like to do is have the new element
appear using the slideDown() function. I tried to hide it at first so
all the user sees is the slideDown() but it brielfy shows the element,
then hides it, then does the slideDown(). I'm sure i'm using the
syntax incorrectly, can anyone point me to my error? Thanks!
Code:
$(newHTML).insertAfter($(element).parent()).hide("slow",function(){
loadCMX(); //essentially calling cmxforms.js so the new label
has correct width
$(this).slideDown("slow");
});