I need to pull data from an xml array, then have it alternate listing the data in the same text box.

Here is the concept I've tried but can't quite get it right:

Code:
for (i=0; i<total; i++) {
    headline[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
      copy_full[i] = xmlNode.childNodes[i].childNodes[5].firstChild.nodeValue;
}

textbox.text = headline[i]+"\n"+copy_full[i];
Here is the result I need displayed in the texbox:

FLASHBACK - OBAMA ON AIG BONUSES --- (headline[0])

Obama talks about the executive bonues at AIG. He talks about how they are in financial distress due to greed.
(021010OLDOBAMA01) Q… greed Time * 16 seconds --- (copy_full[0])

He talks about how it’s hard to understand how AIG awarded these bonues and how can they justify this to the taxypayers.
(021010OLDOBAMA02) Q… afloat Time * 18 seconds
--- (copy_full[0])

Obama then says he is asking Sect. Geitherner to use every single possible way to block the bonuses.

(021010OLDOBAMA03) Q… applause Time * 18 seconds
--- (copy_full[0])

BIDEN GAFFE - IRISH PM'S MOTHER --- (headline[1])

Biden, talking about the mother of the Irish PM, says God rest her soul- oh wait, she’s still alive- God bless her soul! I gotta get this straight!
(031810BIDENGAFFE) Q…straight Time – 21 seconds --- (copy_full[1])


ETC. --- (headline[2])

ETC. --- (copy_full[2])

ETC. --- (headline[3])

ETC. --- (copy_full[3])

Not sure if it helps but here is the xml structure:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<content>
<article>
<headline>FLASHBACK - OBAMA ON AIG BONUSES</headline><!--Insert headline for clip(s) group-->
<date>2010 November 14</date><!--Insert today's date (Year Month Day)-->
<copy_intro><![CDATA[<p>Obama flashback in March of 2009 on AIG and financial responsibility</p>]]></copy_intro>
<image_thumb>DailyAudio/Pics/
ObamaAIGSmall.jpg</image_thumb><!--Insert small jpeg (74 x 74), be sure to keep "pics/" and ".jpg" in there-->
<image_large>DailyAudio/Pics/ObamaAIGBig.jpg</image_large><!--Insert large jpeg (154 x 154), be sure to keep "pics/" and ".jpg" in there-->
<copy_full><!--Insert clip copy here (between <p> and </p>-->
<![CDATA[<p>Obama talks about the executive bonues at AIG. He talks about how they are in financial distress due to greed.
<font color="#666666">(021010OLDOBAMA01) Q… greed Time * 16 seconds</font><br><!--NOTE: Add a return carriage after each clip, DO NOT add any white space between clips or sentences-->

He talks about how it’s hard to understand how AIG awarded these bonues and how can they justify this to the taxypayers.
<font color="#666666">(021010OLDOBAMA02) Q… afloat Time * 18 seconds</font><br>

Obama then says he is asking Sect. Geitherner to use every single possible way to block the bonuses.
<font color="#666666">(021010OLDOBAMA03) Q… applause Time * 18 seconds</font><br>
He then makes sure to let everyone know that Sect Geithner is on the case and is going to get things solved.
<font color="#666666">(021010OLDOBAMA04) Q… last year Time * 16 seconds</font><br>
Obama then says that this is not just a matter of dollars and cents. It’s about fundamental values. He then talks about Americans meeting their responsibilities without bailouts or bonuses.
<font color="#666666">(021010OLDOBAMA05) Q… bonuses Time * 20 seconds</font><br>

Obama then talks about people forgoing pay so they can just keep their credit line open and keep their mortgages.
<font color="#666666">(021010OLDOBAMA06) Q… a float Time * 20 seconds</font><br>

He says that the main thing that these people on “main street” want is for Wall Street to be held to the same standards.
<font color="#666666">(021010OLDOBAMA07) Q… again Time * 20 seconds</font><br>
Obama talks about how there should be some form of resolution mechanism that protects Americans and the financial system just in case this happens again.
<font color="#666666">(021010OLDOBAMA0 Q… as this Time * 12 seconds</font><br>

Obama then makes a joke about how he is choked up with angery.
<font color="#666666">(021010OLDOBAMA09) Q… here Time * 10 seconds</font><br>
He says that they, the government, have some form of resolution to deal with banks but with companies like AIG, the government doesn’t.
<font color="#666666">(021010OLDOBAMA10) Q… here Time * 23 seconds</font><br>
</p>]]>
</copy_full>
</article>
<article>
<headline>BIDEN GAFFE - IRISH PM'S MOTHER</headline>
<date>2010 November 14</date>
<copy_intro><![CDATA[<p>Biden stating the mother of the Irish PM is dead, when she’s very much alive.</p>]]></copy_intro>
<image_thumb>DailyAudio/Pics/BidenSmall.jpg</image_thumb>
<image_large>DailyAudio/Pics/BidenBig.jpg</image_large>
<copy_full>
<![CDATA[<p>Biden, talking about the mother of the Irish PM, says God rest her soul- oh wait, she’s still alive- God bless her soul! I gotta get this straight!
<font color="#666666">(031810BIDENGAFFE) Q…straight Time – 21 seconds</font><br>
</p>]]>
</copy_full>
</article>
<article>
<headline>CLINTON SAYS ISRAEL INSULTED USA</headline>
<date>2010 November 14</date>
<copy_intro><![CDATA[<p>Secretary of State Hillary Clinton says Israel insulted the United States with Jerusalem settlement announcement</p>]]></copy_intro>
<image_thumb>DailyAudio/Pics/HClintonSmall.jpg</image_thumb>
<image_large>DailyAudio/Pics/HClintonBig.jpg</image_large>
<copy_full>
<![CDATA[<p>Clinton says our relationship is durable, rooted in common bonds, but- we have to make clear to them- the 2 state solution requires confidence building measures on both sides.
<font color="#666666">(031510CLINTON01) Q…both sides Time – 23 seconds</font><br>
Clinton says the announcement of the settlements on the very day the Vice President was there was insulting. It was really an unfortunate and difficult moment for everyone, and she regrets deeply that it occurred.
<font color="#666666">(031510CLINTON02) Q…occurred Time – 19 seconds</font><br>
Clinton says on both sides, there are those who don’t favor the 2 state solution, there are a lot of outside actors, who agitate, as we know.
<font color="#666666">(031510CLINTON03) Q…we know Time – 16 seconds</font><br>
</p>]]>
</copy_full>
</article>
</content>

Any and all help on this is greatly appreciated. Thanks for taking a moment to help out a newbie!!!

Kumba