<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:unic="http://www.uni-c.dk/namespace/"
	exclude-result-prefixes="dc content unic">
	<xsl:output method="html"/>

	<xsl:template match="/">
		<div class="box norm">
			<div class="box-i">
				<xsl:apply-templates/>
			</div>
		</div>
	</xsl:template>

	<xsl:template match="ul">
		<xsl:choose>
			<xsl:when test="@class = 'menuNiv1'">
				<ul class="{@class}">
					<xsl:apply-templates/>
				</ul>
			</xsl:when>
			<xsl:when test="@class = 'menuNiv2'">
				<ul class="{@class}">
					<xsl:for-each select="li">
						<xsl:for-each select="a">
							<li class="liMenuUPkt">
								<xsl:call-template name="simpleA"/>
							</li>
						</xsl:for-each>
					</xsl:for-each>
				</ul>
			</xsl:when>
			<xsl:otherwise> </xsl:otherwise>
		</xsl:choose>
	</xsl:template>

	<xsl:template match="li">
		<li class="{@class}">
			<xsl:apply-templates/>
		</li>
	</xsl:template>

	<xsl:template match="a">
		<strong>&#8226;</strong>&#160; <a href="{@href}" title="{@title}"
			class="{@class}" tabindex="{@tabindex}">
			<xsl:value-of select="." disable-output-escaping="yes"/>
		</a>
		<xsl:if test="@title != ''">
			<br/>
			<cite>
				<xsl:value-of select="@title"/>
			</cite>
		</xsl:if>
	</xsl:template>

	<!--#####################      FUNCTION 	#####################-->
	<xsl:template name="simpleA">
		<strong>&#8226;</strong>&#160; <xsl:copy-of select="."/>
	</xsl:template>
</xsl:stylesheet>

