XML into list component

I have an xml file formatted as follows

<media>
<product
title=“Product title here”
main=“mainPic.jpg”
thmb=“thumbPic.jpg”
oc1=“123”
v1=“123”
oc2=“123”
v2=“123”
description=“description.txt”
constituents=“constituents.txt”
usage=“usage.txt”
release=“release.txt”
related=“related.txt”
protocol=“protocol.txt”
/>
</media>

What I would like to do is load the xml file into Flash and show the attribute title in a list box. When the user clicks on the list box the rest of the data will show in various other fields. I’m not really sure how to load this xml file in the list box though and make if a link for the rest of the data. Anyone have any suggestions or links to tutorials for this.?