Try this
$('li.parent_folder').click(function() {
// +this+ var refers to the +li+ that was clicked.
// .children() gets the children of each element in the set of matched elements, optionally filtered by a selector.
$(this).children('ul.submenu').hide();
});
Here's more information on jQuery .children() method
Edit:
updated method from .find()
to .children()
based on @Gumbo's recommendation
macek
2010-04-09 17:09:43