
function showme(id)
{
	/*
	// Browserweiche für IE6
	if(id)
	{
		if(navigator.appVersion.indexOf("6.0") != -1 && navigator.appName.indexOf("Explorer") != -1)
		{
			document.getElementById(id).style.display = 'block';
			document.getElementById(id).style.border = '1px solid #ffffff';
			document.getElementById(id).style.top = '25px';

			li_elemente(id)
		}
	}
	*/

}

function show_not(id)
{
	if(navigator.appVersion.indexOf("6.0") != -1 && navigator.appName.indexOf("Explorer") != -1)
	{
		document.getElementById(id).style.display = 'none';
	}
}

function change_bgr(id)
{
	if(navigator.appVersion.indexOf("6.0") != -1 && navigator.appName.indexOf("Explorer") != -1)
	{
		document.getElementById(id).className = "extra_li";
	}
}

function clear_bgr(id)
{
	if(navigator.appVersion.indexOf("6.0") != -1 && navigator.appName.indexOf("Explorer") != -1)
	{
		var zusatz = '';
		if(document.getElementById(id).className.indexOf("aktueller_pfad") != -1){
			zusatz = " aktueller_pfad";
		}
		document.getElementById(id).className = "mit_trennstrich"+zusatz;
	}
}

function change_hover(id) {
	if(navigator.appVersion.indexOf("6.0") != -1 && navigator.appName.indexOf("Explorer") != -1)
	{
		var zusatz = '';
		if(document.getElementById(id).className.indexOf("aktueller_pfad") != -1){
			zusatz = " aktueller_pfad";
		}
		document.getElementById(id).className = 'mit_trennstrich first_lis xx'+zusatz;
	} else {
		document.getElementById(id).style.color = "#C4362A";
	}
}

function unchange_hover(id) {
	if(navigator.appVersion.indexOf("6.0") != -1 && navigator.appName.indexOf("Explorer") != -1)
	{
		var zusatz = '';
		if(document.getElementById(id).className.indexOf("aktueller_pfad") != -1){
			zusatz = " aktueller_pfad";
		}
		document.getElementById(id).className = 'mit_trennstrich'+zusatz;
	}
	document.getElementById(id).style.color = "#000000";
}

function li_elemente(id) {

	if(id)
	{
		var oUl = document.getElementById(id);
		var oChild = oUl.firstChild;

		oUl.style.border = '0px solid #ffffff';
		while(oChild)
		{
			if(oChild.nodeType == 1)
			{
				oChild.firstChild.className = 'extra_li';
				oChild.firstChild.style.width = '200px';
				oChild.firstChild.style.color = '#000000';
			}

			if(oChild.nextSibling)
			{
				oChild = oChild.nextSibling;
			} else
			{
				oChild = false;
			}
		}
	}
}

function cl_all()
{
	document.getElementById("link_0").style.color = '#000000';
}