﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
	<xsl:include  href="../../Version_2_0/ModuleHeaders.xslt"/>
	<xsl:output method="xml" indent="yes"/>

	<xsl:template match="/">
		<xsl:variable name="TemplateURL" select="AjaxRequest/TemplateURL"></xsl:variable>
    <xsl:variable name="ItemID" select="AjaxRequest/Params/ItemID"></xsl:variable>

		<table class="tableMaster" cellpadding="0" cellspacing="0">
			<tr>
				<td>
					<div>
						<xsl:call-template name="moduleHeadersTemplate">
							<xsl:with-param name="Header">
								<xsl:text>Product Catalog</xsl:text>
							</xsl:with-param>
							<xsl:with-param name="TemplateURL" select="$TemplateURL"></xsl:with-param>
						</xsl:call-template>
					</div>
					<div id="div_Products" name="PortalMenuOption" style="padding-top:5px;padding-left:10px;padding-bottom:5px;" class="moduleSubHeaderOption"
						 onmouseover="document.getElementById('div_Products').className='moduleSubHeaderOptionHover';"
						 onmouseout="document.getElementById('div_Products').className='moduleSubHeaderOption';"
               onclick="portal_HighlightSelectedOption('{$ItemID}','div_Products','#58595B');">
						<span style="padding-left:20px;">
							Products
						</span>
					</div>
					<div id="div_Inventory" name="PortalMenuOption" style="padding-top:5px;padding-left:10px;padding-bottom:5px;" class="moduleSubHeaderOption"
						 onmouseover="document.getElementById('div_Inventory').className='moduleSubHeaderOptionHover';"
						 onmouseout="document.getElementById('div_Inventory').className='moduleSubHeaderOption';"
               onclick="portal_HighlightSelectedOption('{$ItemID}','div_Inventory','#58595B');">
						<span style="padding-left:20px;">
							Inventory
						</span>
					</div>
				</td>
			</tr>
		</table>
	</xsl:template>
</xsl:stylesheet>
