XML insertBefore() wont work

Im working on a flash/XML CMS for a photo gallery and Im having trouble with the insertBefore() function.


<images>
<image thumb="carneruds.jpg" />
<image thumb="slides.jpg" />
<image thumb="hollywood.jpg" />
</images>
function createNode():Void { 
var imageNode:XMLNode = myXML.firstChild.firstChild.cloneNode(true); 
imageNode.attributes.thumb = currPath+filename_txt.text; 
myXML.insertBefore(imageNode, myXML.firstChild.firstChild); 
trace(myXML); 
} 

I can insert the node with [FONT=Courier New][COLOR=#0000bb]myXML[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]insertBefore[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000bb]imageNode[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000bb]myXML[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]firstChild[/COLOR][COLOR=#007700]); [/COLOR][/FONT]
but that inserts the node before my rootnode.
When I try to insert it inside the xml trea ([FONT=Courier New][COLOR=#0000bb]myXML[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]insertBefore[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000bb]imageNode[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000bb]myXML[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]firstChild[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]firstChild[/COLOR][COLOR=#007700])[/COLOR][/FONT])
it wont work, anybody have an idea?