Getting XML attribute values

Hello, I have this XML file:

<?xml version=“1.0” encoding=“utf-8”?>
<winners>
<thunder5 name=“Jonny James” place=“Finished 3rd” about=“Good, unique racing skills” />
</winners>
And this actionscript (2.0):

var my_xml = new XML();
my_xml.onLoad = function(success) {

if (success) {

    trace(my_xml.**&lt;stuff_to_change&gt;**);

}

};
my_xml.load(“belekas.xml”);
What shoud I write instead of “<stuff_to_change>” to get flash to trace “Jonny James”, or “Good, unique racing skills”?

Thanks for your help,
AJSimpson