<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<TABLE BORDER="1">
<TR>
<xsl:for-each select="gods/god[0]/*">
<TH ONCLICK="changeOrder(this.innerText)"
    STYLE="cursor: hand;"
>
<xsl:eval>this.nodeName</xsl:eval>
</TH>
</xsl:for-each>
</TR>
<xsl:for-each select="gods/god" order-by="- name">
<TR>
<xsl:for-each select="*">
<TD>
<xsl:value-of/>
</TD>
</xsl:for-each>
</TR>
</xsl:for-each>
</TABLE>
</xsl:template>
</xsl:stylesheet>

