I am converting an xml to a different xml using xslt. I use:\[code\]<xsl:template match="header"><header> <order><xsl:value-of select="@order"/></order> <value><xsl:value-of select="../header"/></value></header></xsl:template>\[/code\]to grab info that is in the header. The original header file:\[code\]<header order="1">blah11111</header><header order="2">blah22222</header>\[/code\]What I am getting from this when I do apply templates:\[code\]<header> <order>1</order> <value>blah11111</value></header><header> <order>2</order> <value>blah11111</value></header>\[/code\]What I want:\[code\]<header> <order>1</order> <value>blah11111</value></header><header> <order>2</order> <value>blah22222</value></header>\[/code\]Any thoughts?