Source of categories_ajax.xsl

<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
<xsl:import href="common.xsl" />
 
<xsl:template match="/"><xsl:apply-templates /></xsl:template>
 
<xsl:template match="Category">
  <li class="collapsed"><a href="questions.asp?category={@id}" id="{@id}"><xsl:call-template name="copyRich" /></a></li>
</xsl:template>
 
</xsl:stylesheet>