Lets get straight to it: the theory is an accordion which is one way - clicking on a header in the accordion will slide down content and clicking on a separate div inside will slide its parent (the header) back up. I want to use this as I would prefer an accordion which doesn't just slide back up whenever another header is clicked. Actually, as I don't know too much jquery, my theory probably won't work, so if there're any easier alternatives out there I'll use them! This is what I've got so far, but it's definitely not working. I hope this isn't too vague:\[code\]$('#nav > li > a').click(function() { $(this).findfirst-child).slideDown(200); });\[/code\]