XML-gallery with categories

Hello!

I’m trying to create an xml/flash video gallery…

this is what my XML-code looks like:


[SIZE=2]<?xml version="1.0" encoding="UTF-8"?>
<images>
<category name="Humor">
<pic>
<title>HAHA</title>
<desc>Fun...</desc>
<URL></URL>
<thumb>thumbs\004.jpg</thumb>
</pic>
<pic>
<title>HIHIHOHO</title>
<desc>lalala...</desc>
<URL></URL>
<thumb>thumbs\003.jpg</thumb>
</pic>
</category>
 
<category name="Music videos">
<pic>
<title>Jack Johnson</title>
<desc>Times like theese</desc>
<URL></URL>
<thumb>thumbs\002.jpg</thumb>
</pic>
<pic>
<title>Jack Johnson</title>
<desc>Times like that other time...</desc>
<URL></URL>
<thumb>thumbs\001.jpg</thumb>
</pic>
</category>
</images>
[/SIZE]

Now, here’s my question…How do I trace the different values, such as category, title and so on…

Thanks:D