XML and AS3 problem Please help

Hello

I am trying to parse an xml file with sub tags.

I am running two loops the first loop runs through the main tags and the inner loop displays the sub tags the problem is the inner loop is not displaying the contents of the tags.

If you can please have a look at the attached folder you can get a better idea. I am putting the code here as well.

// XML file code


<?xml version = "1.0" encoding= "UTF-8"?>
<soundtracks>
<movie>
<name>Lost in Translation</name>
<soundtrack genre = "SoundTrack" releaseDate = "11 July 2008" price =  "£7.99" >
<track>Intro/Tokyo</track>
<track>2. City Girl - Kevin Shields</track>
<track>3. Fantino - Sebastien Tellier</track>
<track>4. Tommib - Squarepusher </track>
</soundtrack>
</movie>
<movie>
<name>AdultHood</name>
<soundtrack genre = "SoundTrack" releaseDate = "11 July 2008" price =  "£7.99" >
<track>Track 1</track>
<track>track 2</track>
<track>Track 3</track>
</soundtrack>
</movie>


// Main timeline code for loading and parsing XML file



var urlLoader:URLLoader = new URLLoader();
urlLoader.addEventListener(Event.COMPLETE, onComplete);
function onComplete(e:Event):void
{
    var xml:XML = XML(e.target.data);
    parseXML(xml);
}
urlLoader.load(new URLRequest("soundtrack.xml"));
                                                       
function parseXML(xml:XML)
{
    for (var i:int = 0; i < xml.*.length(); i++)
    {
        trace (xml.**.name);
        for (var j:int = 0 ; j < xml.**.soundtrack.length(); j++)
        {
            trace("This is the title" +xml.**.soundtrack.*[j].track);
        }
    }
}

Thanks in advance