<?xml version='1.0'?>
<!--Copyright 1999-2000 Intuit Inc. All rights reserved. Unauthorized duplication is a violation of applicable law.-->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" />
<xsl:template match="AccessPointList/AccessPointList">	

	<table id="navTable" border="0" cellpadding="0" cellspacing="1">
		<xsl:call-template name="LeftNavHeaders" />
	</table>
	</xsl:template>

	<xsl:template name="LeftNavHeaders">	
	<xsl:for-each select=".">
	<tr>
		<td>
			<xsl:attribute name="onClick">resetActiveROW();setActiveROW(<xsl:value-of select="@ID"/>navClass);hideDIVS2(false);setOpenDIV(&quot;<xsl:value-of select="@ID"/>&quot;);setActiveNAV(&quot;<xsl:value-of select="@ID"/>navButton&quot;);show2(<xsl:value-of select="@ID"/>);<xsl:value-of select="@ID"/>navClass.className=&quot;navdescription_on&quot;;</xsl:attribute>
	<xsl:attribute name="onMouseOver">rollNAVover(&quot;<xsl:value-of select="@ID"/>navButton&quot;,<xsl:value-of select="@ID"/>navClass);</xsl:attribute>
	<xsl:attribute name="onMouseOut">rollNAVout(&quot;<xsl:value-of select="@ID"/>navButton&quot;,<xsl:value-of select="@ID"/>navClass);</xsl:attribute>
			<!-- This A tag is here for keyboard navigation purposes only -->
			<a href="javascript:" tabindex="5001" class="navlink" onClick="javascript:;">
			<table cellpadding="0" cellspacing="0" class="navtable">
          	<tr>
		  	<td valign="top" width="100%" class="navdescription">
			<xsl:attribute name="id"><xsl:value-of select="@ID"/>navClass</xsl:attribute> 
			<xsl:value-of select="@Name"/>
			</td>
			</tr>
			</table>
		 	</a>
		</td>
	</tr>
	</xsl:for-each>
	</xsl:template>
</xsl:stylesheet>
