<!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/subjects">
  <div id="subjectsBody">
<xsl:for-each select="subject">
    <div class="saiRow">
      <a name="subject{@id}"></a>
      <span class="saiExCo" id="subjectExCo{@id}">+</span><a href="javascript:void(0);" class="saiName" onclick="getArticlesBySubject({@id})" title="Click to see articles"><xsl:value-of select="description" /></a>
      <div id="subjectArticlesPortal{@id}" class="articlesPortal"></div>
    </div>
</xsl:for-each>
  </div>
</xsl:template>
</xsl:stylesheet>