<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/response/authors">
  <div id="authorsBody">
<xsl:for-each select="author">
    <div class="saiRow">
      <a name="author{@id}"></a>
      <span class="saiExCo" id="authorExCo{@id}">+</span><a href="javascript:void(0);" class="saiName" onclick="getArticlesByAuthor({@id})" title="Click to see articles"><xsl:value-of select="name" /></a>
      <div id="authorArticlesPortal{@id}" class="articlesPortal"></div>
    </div>
</xsl:for-each>
  </div>
</xsl:template>
</xsl:stylesheet>