[mx04pro] XML Connector basics ...HELP!

[font=Arial]Ok, I want to create an array of objects that are assigned values based on an XML document. How would I do this with an XML structure such as:

[/font]

<person>
 <first_name></first_name>
 <last_name></last_name>
 <id></id>
</person>
<person>
 <!-- values -->
</person>
<!-- etc... -->

How could I make an array, peopleArray, filled with the individual person objects?
This action would ideally be triggered as the frame is loaded (no user intervention required).

Thanks.