﻿<?xml version="1.0" encoding="UTF-8"?>


<xsl:stylesheet version="2.0" 
                xmlns:html="http://www.w3.org/TR/REC-html40"
                xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  <xsl:output method="html" version="1.0" encoding="iso-8859-1" indent="yes"/>

<xsl:template match="/">
<center>
<div id="masterdiv">
    <center><h2>Number of URLs in this Sitemap: <xsl:value-of select="count(urlset/categories) + count(urlset/main)"></xsl:value-of></h2><br/><span style="color: #ffffff; font-family: Verdana, Arial, sans-serif; font-size: 0.8em;">Click On Links To Show Sitemap Categories</span></center>
    

    	<a onclick="SwitchMenu('sub1')" onmousedown="this.href='sitemap.php#main'"><h3 ><u>Main</u></h3></a>

	<span class="submenu" id="sub1">
		<xsl:for-each select="urlset/main">
		 <a href="{loc}"><xsl:value-of select="loc"/></a><br /><br />
		    </xsl:for-each>
	</span>
	
	<a onclick="SwitchMenu('sub2')" onmousedown="this.href='sitemap.php#info'" name="info"><h3 ><u>Info</u></h3></a>

	<span class="submenu" id="sub2">
		<xsl:for-each select="urlset/info">
		 <a href="{loc}"><xsl:value-of select="loc"/></a><br /><br />
		    </xsl:for-each>
	</span>
	<a onclick="SwitchMenu('sub3')" onmousedown="this.href='sitemap.php#categories'" name="categories"><h3><u>Categories</u></h3></a>

	<span class="submenu" id="sub3">
		<xsl:for-each select="urlset/categories">
		 <a href="{loc}"><xsl:value-of select="loc"/></a><br /><br />
		    </xsl:for-each>
	</span>
	
	

</div>
</center>
</xsl:template>


</xsl:stylesheet>
