Jquery not selecting text from second node

Jquery not selecting text from second node

 [CODE]  $(xml).find("performance_0").each(function()
  {
    
    alert ($(this).find("the_images").eq(0).text());
    
  });[/CODE]

Here is the xml.

[CODE]<Motion_Design_Images>
  <performance_0>   
        <the_images>
            <img>sasha_n_lex_PEX_01.jpg</img>
            <img>sasha_n_lex_PEX_02.jpg</img>
            <img>sasha_n_lex_PEX_03.jpg</img>
        </the_images>
        <Date>2009/October</Date>
        <title>PEX Halloween 2009</title>
        <description>This is a description</description>
        <who_performed>Sasha and Lex</who_performed>
  </performance_0>

</Motion_Design_Images>[/CODE]

I want "sasha_n_lex_PEX_02.jpg" but i am unsure why I get the following instead.

[CODE]            sasha_n_lex_PEX_01.jpg
            sasha_n_lex_PEX_02.jpg
            sasha_n_lex_PEX_03.jpg
[/CODE]