<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:template match="/">
	<HTML>
	<HEAD>
	<SCRIPT LANGUAGE="javascript">
	</SCRIPT>
	</HEAD>
	<BODY>
	<TABLE border="0" cellpadding="3" cellspacing="3">
		<TR>
        	<TH colspan="2"><center>Employees Making Over $23,000</center></TH>
        </TR>
        <TR>
			<TH style="background-color:beige">Name</TH>
			<TH style="background-color:beige">Salary</TH>
		</TR>
	<xsl:for-each select="employees/employee[salary > 23000]">
		<TR VALIGN="top" 
			onmouseover="this.style.backgroundColor='lightcyan'" 
			onmouseout="this.style.backgroundColor='white'" 
			style="background-color:white;cursor:hand" onclick="alert('We love this class! XML is the Best!')">
			<TD>
				<xsl:value-of select="name"/>
			</TD>
			<TD>
				<xsl:value-of select="salary"/> 
                <xsl:if test="salary = 24500">
                	<br /><font color="red">WOW <xsl:value-of select="name"/>, you are the highest paid employee!!!!</font>
                </xsl:if>
			</TD>
		</TR>
	</xsl:for-each>
	</TABLE>
	<BR/>
	<HR/>
	<CENTER><a HREF="if.xsl">See XSL Code</a></CENTER>
	</BODY>
	</HTML>
	</xsl:template>
</xsl:stylesheet>

