XML Calendar Works, But How

I have the following code in actionscript


var calendar:XML = new XML();
calendar.ignoreWhite = true;

var captions:Array = new Array();

calendar.onLoad = function(success) {
    if (success) {
        var rootNode = this.firstChild;
        for (var aNode:XMLNode = rootNode.firstChild; aNode != null; aNode=aNode.nextSibling) {
            captions.push(aNode.firstChild.nodeValue);
        }

		caption.htmlText = captions[0];
		
    } else {
        trace("XML not loaded");
    }
};

       day1.onPress = function() {
            caption.htmlText = captions[0];
        };

        day2.onPress = function() {
            caption.htmlText = captions[1];
        };

Which references the code in an XML document:


<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<slideshow>

	<caption>

<![CDATA[<p>January 1, 2009.</p>
<p>Happy New Year!</p>]]>

</caption>

	<caption>

<![CDATA[<p>January 2, 2009.</p>
<p>No events Scheduled</p>]]>

</caption>

</slideshow>

Everything works perfectly! Finally! I stole the code from people who helped me, but it didn’t work with my specific setup as was… but all the help I got in people telling me a bunch of different codes made me slowly learn how parents, children, and nodes work! I fixed the parameters, and it functions and I know why! Thank you all very much.

The only small, tiny part of the code I don’t understand is the following:

anode=anode.nextSibling

as found in the for condition in the code above

I don’t understand how the application knows which sibling to go to next. I add the number of the child in brackets like so

caption.htmlText = captions[2]

How does the anode=anode.nextSibling code determine which node information is displayed due to this? Please! I need to understand what I’ve done, not just do it.