XML and gallery... another Question?

Hi ever1.

I have been playing with the xml gallery
http://www.kirupa.com/developer/mx2004/xml_flash_photogallery.htm

what I want to do is add sound to each slide/picture that loads…
currently my XML looks something like this

<images>
<pic>
<image>myimages.jpg</image>
<caption>my image caption</caption>
<audio>myaudio.mp3</audio>
</pic>
</images>

I can’t get the mp3 to load and play!:huh:
I have made an empty MC called “audio_mc”
but still doesn’t play the audio
I know i have to make some sort of function that will load and play the audio inside audio_mc but I can seem to wrap my hand around it…

the only way I know how to import dynamic audio is this way

sound = new Sound();
sound.loadSound( “test1.mp3”, true);
sound.play();

how do I apply this method with xml?
so it works like the images in the gallery.