Help with XML & Flash

Greetings:

I am currently working on some Flash movies for a client here at work, and for some reason I am having troubles with only 1 out of 11 Flash movies.

Here is my XML

<?xml version="1.0"?>

<gcflashmovies>

    <businessgreetingcards>
        <sale1>Send Holiday Cheer</sale1>
        <sale2>Show your Appreciation</sale2>
        <sale3>Motivate Employees</sale3>
        <sale4>Thank Loyal Customers</sale4>
        <offer>Build better business relationships with cards from The Gallery Collection</offer>
    </businessgreetingcards>
    
    <holidaycards>
        <sale>Premium Quality Holiday cards make an impression all year long!</sale>
        <offer>Limited-Time Special Offer! 40% Discount and also $75 off each order thru September 21st!</offer>
    </holidaycards>
    
    <alloccasioncards>
        <sale>Build loyalty and boost morale by acknowledging those special occasions!</sale>
        <offer>Limited-Time Special Offer! 40% Discount and also $75 off each order thru September 27th!</offer>
    </alloccasioncards>
        
    <assortmentboxes>
        <sale>Stop Running to the Store... Have the perfect greeting card at your finger tips when you need it!</sale>
        <offer>Order by September 27th and we’ll send you 5 extra Cards and Envelopes in each box!</offer>
    </assortmentboxes>
    
    <additionalproducts>
        <sale>Down to the very last detail...</sale>
        <offer>We Offer Many Ways to make a Quality Impression</offer>
    </additionalproducts>
    
    <calendarcards>
        <sale>Show your clients they can count on you year long with Calendar Cards!</sale>
        <offer>Limited-Time Special Offer!  40% Discount and also $75 off each order thru September 21st!</offer>
    </calendarcards>
    
    <museumart>
        <sale>Monet, Van Gogh Pissaro and more...Beautiful art reproductions ready for framing.</sale>
        <offer>Limited Time 50% Discount! Order by October 25 and receive 50% off this year's list price!</offer>
    </museumart>
    
    <metallicgelpens>
        <sale>Your signature will stand out with our quality gold or silver gel pens.</sale>
        <offer>Metallic gel pens...A perfect complement to your greeting cards!</offer>
    </metallicgelpens>
    
    <embossedfoil>
        <sale>Beautifully Embossed Gold or Silver Foil Seals</sale>
        <offer>Add the Perfect Finishing Touch to your Envelopes!</offer>
    </embossedfoil>
    
    <giftbagensembles>
        <sale>Add a distinctive touch to Holiday & Everyday Gift Giving with Gift Bag Ensembles</sale>
        <offer>Limited Time Special Offer! Get $10 off each ensemble order thru December 6th!</offer>
    </giftbagensembles>

    <homepage>
        <sale>We are proud to present only the finest quality greeting cards</sale>
        <offer>Make an Impression that Customers and Friends will Remember</offer>
    </homepage>
    
</gcflashmovies>


On each of my Flash movies I have this (this particular example is the file that won’t work):

function loadXML(loaded) {
    if (loaded) {
        _root.sales = this.firstChild.childNodes[10].childNodes[0].firstChild.nodeValue;
        _root.offer = this.firstChild.childNodes[10].childNodes[1].firstChild.nodeValue;
    } else {
        trace("file not loaded!");
    }
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("information.xml");

And on each frame of my movie clip -> text field I have this:

sale_clip.selling_copy.text = _root.sales;

or

offer_clip.offer_copy.text = _root.offer;

The problem is, all but the 11th slot (homepage tag) in the XML file shows. The 11th slot in the XML file just comes up as undefined on the web, but fine in Flash.

Is there something I’m doing wrong or unaware of?