<?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:include href="reminders.xsl"/>
	<xsl:output method="html" indent="yes" /> 

	<xsl:template match="/"><xsl:apply-templates/></xsl:template>

	<xsl:template match="table/rows/row/links">
		<TABLE cellspacing="0" cellpadding="0" width="100%" border="0">
			<TR>
				<TD><img src="Images/spacer.gif" border="0" width="4" height="0"/><img src="Questions/Images/feat_services.gif" border="0" alt="Featured Services" style="margin-bottom:4pt;"/></TD>
			</TR>
		</TABLE>
 
		<TABLE cellspacing="0" cellpadding="0" width="100%" border="0">
			<xsl:for-each select="link">
				<xsl:sort select="@priority" data-type="number"/>
				<xsl:sort select="@random" data-type="number"/>
				<xsl:if test="position()&lt;=2">
				<TR>
					<!-- icon -->
						<TD rowspan="2" valign="middle" style="background-color:#FFFFFF;color:#000000;">
							<img src="Images/spacer.gif" border="0" width="4" height="0"/>
							<a><xsl:attribute name="href"><xsl:value-of select="command"/></xsl:attribute>
							<img border="0"><xsl:attribute name="src"><xsl:value-of select="icon"/></xsl:attribute></img>
							</a>
						</TD>	
						<!-- title -->
						<TD style="background-color:#FFFFFF;color:#000000;">
						<img src="Images/spacer.gif" border="0" width="0" height="4"/><BR/>
						<B><font style="color:330000;"><xsl:value-of select="linktitle"/></font></B>
						</TD>	
						<!-- Remind Me Later link -->
						<TD width="1%" nowrap="yes" style="background-color:#FFFFFF;color:#000000;">
						<img src="Images/spacer.gif" border="0" width="0" height="4"/><BR/>
						<xsl:apply-templates select="reminderlink"/><img src="Images/spacer.gif" border="0" width="6" height="0"/></TD>	
					</TR>		
					<TR height="26">
						<!-- Description -->
						<TD colspan="2" style="background-color:#FFFFFF;color:#000000;">
						<xsl:if test="@online='true'"><img src="images/com_bolt.gif" alt="Online Content Icon" width="8" height="12"/>&#xa0;</xsl:if><a><xsl:attribute name="href"><xsl:value-of select="command"/></xsl:attribute><xsl:value-of select="linktext"/></a></TD>
					<TD>
						<img src="Images/spacer.gif" width="12" height="1" /> <!-- horizontal spacer image -->
					</TD>
					</TR>
					<TR>
						<TD colspan="3"><img src="Images/spacer.gif" border="0" width="0" height="5"/></TD>
					</TR>
				</xsl:if>
			</xsl:for-each>
		</TABLE>

	</xsl:template>

</xsl:stylesheet>

