Loading 'more' of the xml content in flash

Hi, still learning flash/xml…and am stuck…

I have a 6 movie clips on the main timeline named ‘item_0_mc’, ‘item_1_mc’, etc, each of which contains dynamic text fields and movieclips which I am loading (the respective) content into…

There is a for statement that tells it to load the first 6 childnodes into each respective movie clips :

-------------------/

this_mc = this;
function display(){
[COLOR=Red]for (var e = 0; e<6; e++) {
item_mc = this_mc[“item_”+e+"_mc"];[/COLOR]
scarves = xmlData.firstChild.childNodes[2].childNodes[e];
item_mc.picture_mc.loadMovie(scarves.attributes.image);
item_mc.title_txt.text = scarves.attributes.title;
item_mc.starsign_txt.text = scarves.attributes.starsign;
item_mc.hobbies_txt.text = scarves.attributes.hobbies;
item_mc.loves_txt.text = scarves.attributes.loves;
item_mc.xmldata = scarves;
}
}

xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load(“xml/fashion.xml”);

-------------------/

What i’m trying to do is have a ‘next’ button, that asks for the next 6 childNodes to be loaded into the same item_0_mc('s).

For referance, the xml code is inside ‘items_scarves_mc’ which is on the ‘content’ layer of the attached file…

cheers,
jo