> $(this).next('.subNav').SlideToggleDown(500);
Don't forget the period!
Also, if you don't care which element is next, but just want it to
slide down, you can just do:
$(this).next().SlideToggleDown(500);
If you really do want to match a child element, you very nearly had to
code right before:
$(".subNav",this).SlideToggleDown(500);
Hope this helps.
--John
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
