[jQuery] Strange slideUp/slideDown behavior

[jQuery] Strange slideUp/slideDown behavior

I'm experiencing strange slideUp/slideDown behavior.
I know there's already a bug involving the flicker when calling
slideDown() on an element with display set to "none" (which I believe to
be a common case?), and this will likely be solved by creating height
before starting animation?
As for my new issue, slideDown/slideUp seem to work 2 times before
borking out. Before I submit this as a bug, I was wondering if I could
get the list to review my procedure to make sure I'm not doing anything
wrong?
Here's the code;
$("#personalize").click(function() {
$("#selectField").slideDown('slow', function() {
$(this).find("a.pommoClose").click(function() {
$("#selectField").slideUp('slow', function() {
$(this).unclick(); });
return false;
});
});
return false;
});
Basically:
1) assign event to call slideDown() on #selectField (<div>) when a link
is clicked.
Within the div that is "slid down", there's a link with class "pommoClose"
2) assign event to call slideUp() on #selectField when a.pommoClose is
clicked
After the slideUp() call is complete, unregister this event
(pommoClose onClick())
* note, the behavior is the same even if I don't include that (perhaps)
unnecessary call to unclick().
For further clarity (as I'm weary), here's the
example/demonstration/test page;
http://www.iceburg.net/iceburg/test.php
Be sure to click "add personalization" then "close personalization" 3
times to see the worry.
Thanks,
~ Brice
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/