i have a XML like
<rootXml>
<category id="1" name="Dept 1" folderPath="/css" leftHt="400"
leftWd="50" rightHt="400" rightWd="50">
<category id="2" name="Service 1" folderPath="/news/world"></category>
<category id="3" name="Service 2" folderPath="/news/local"></category>
<category id="4" name="Service 3" folderPath="/news/crime"></category>
<category id="5" name="Service 4" folderPath="/news/humaninterest"></category>
</category>
</rootXml>
i want to create a tree structure in jsp that displays like
Dept1
Service1
Service2
Service3
Service4
basically on clicking parent node its child should be displayed..
i used dojo before but its quite heavy and want to develop it by my own code. i have the DOM object of the xml with me with all the data, how to proceed next?