Xml help

hey can somebody explain to me how to access the <LINKS> node in my xml here. What i want is to see all the names under this xml node

<CHARITIES>
	<CHARITY_LOGO>img/1279115638.jpg</CHARITY_LOGO>
	<CHARITY_IMAGE>img/1279115638.jpg</CHARITY_IMAGE>
	<KEYWORD>EARTH1</KEYWORD>
	
</CHARITIES>
<LINKS>
	<LINK_NAME>
		<TITLE>Charity</TITLE>
	</LINK_NAME>
	<LINK_NAME>
		<TITLE>Video</TITLE>
	</LINK_NAME>
	<LINK_NAME>
		<TITLE>Share</TITLE>
	</LINK_NAME>
	<LINK_NAME>
		<TITLE>Donate</TITLE>
	</LINK_NAME>
</LINKS>

this is my code which only shows the first title inside the node

xmlNode = myxml.lastChild;
	for (var i = 0; i < xmlNode.childNodes.length; i++)
	{
		mymenu = xmlNode.firstChild.childNodes*.firstChild.nodeValue;
		trace(mymenu);
	}

any help here would be great

Dee