Using jQuery UI toggle expanding/hiding nested divs

Using jQuery UI toggle expanding/hiding nested divs

    I have a recursive function that renders divs as shown below. I have been researching and have not found a good way to accomplish the toggle method.  I would like to be able to have the click method fire on only a single element.  IE: Only fire when i click on Administration, not when i click on anything within administration.  Then at this point all i am really trying to do is click on a level 1, fire the toggle method to just show/hide whats nested inside that element.  I would love to be able to do the same for .lvl2, and lvl3

    Any ideas on the proper selector for click and the proper way to only select immediate (first level nested) elements, but not their children would be great.  Thanks!  PS, willing to change how my HTML is rendered if it can accomplish this easier.

    1. <div class="DeptWrapper">Departments
    2. <div class="lvl1">Administration
    3. <div class="lvl2">Accounting Division
    4. </div>
    5. <div class="lvl2">Administration Services
    6. </div>
    7. <div class="lvl2">Budget Division
    8. </div>
    9. <div class="lvl2">Collections Division
    10. </div>
    11. <div class="lvl2">Human Resources Division
    12. </div>
    13. <div class="lvl2">Information Technology Division
    14. </div>
    15. <div class="lvl2">Purchasing Division
    16. </div>
    17. <div class="lvl2">Records Management Division
    18. <div class="lvl3">Imaging
    19. </div>
    20. <div class="lvl3">Record Transmittals
    21. </div>
    22. <div class="lvl3">RM Mail Division
    23. </div>
    24. </div>
    25. <div class="lvl2">Risk Management Division
    26. </div>
    27. <div class="lvl2">Tax Listing
    28. </div>
    29. </div>
    30. <div class="lvl1">Circuit Court
    31. <div class="lvl2">Civil Court
    32. </div>
    33. <div class="lvl2">Clerk of Circuit Court
    34. </div>
    35. <div class="lvl2">Court Officials
    36. </div>
    37. <div class="lvl2">Criminal & Traffic Court
    38. </div>
    39. <div class="lvl2">Family Court
    40. </div>
    41. <div class="lvl2">Jury Services
    42. </div>
    43. <div class="lvl2">Juvenile Court
    44. </div>
    45. <div class="lvl2">Probate Court
    46. </div>
    47. </div>
    48. </div>