I think 'position()' function of XPATH will do the job. Returns the index position of the node that is currently being processed. you need to do position() mod 2.
Here is XSLT solution
<xsl:for-each select="tr">
<xsl:choose>
<xsl:when test="position() mod 2 = 1 and position() > 1">
...do smthng ....
</xsl:when>
<xsl:otherwise>...do something else...</xsl:otherwise>
</xsl:choose>
</xsl:foreach>
