<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
	<html>
	<body>
	<h2>Party Supplies</h2>		
	<xsl:apply-templates select="partySupplies/supply"/>
	</body>
	</html>
</xsl:template>

<xsl:template match="item">
	<table border="1">
	<br />Item:<br /> 
	<td><xsl:value-of select="name"/></td>
        <td><xsl:value-of select="price"/></td>
 	<td><xsl:value-of select="catalogNumber"/></td>
	<td><img src="{pictureLink}" /></td>
 	<td><xsl:value-of select="description"/></td>
	<br />
	</table>
</xsl:template>
	
<xsl:template match="category">
	<b>Category: <xsl:value-of select="@name"/></b>
	<xsl:apply-templates select="item"/><br />
</xsl:template>	

<xsl:template match="supply"><br />
	<hr><b>Supply: <xsl:value-of select="@name"/></b><br /><hr>
		<xsl:apply-templates select="category"/><br /></hr></hr>
</xsl:template>


</xsl:stylesheet>

