to = 0;
sto = 0;

function showMainSubMenu(nr)
{
	if (to != 0)
	{
		clearTimeout(to);
	}
	hideAllMainSubMenu();
	showHover(nr, "main");
	document.getElementById("mainsubmenu"+nr).style.display = "block";
}
function showHover(nr, mn)
{
	document.getElementById(mn+"menu"+nr).style.cursor = "default";
	document.getElementById(mn+"menu"+nr).style.backgroundColor = "#4C4840";
	document.getElementById(mn+"menu"+nr).style.borderColor = "#BBBBBB";
	document.getElementById(mn+"menutext"+nr).style.color = "#BBBBBB";
}
/*
function showLiteHover(nr, mn)
{
	document.getElementById(mn+"menu"+nr).style.cursor = "default";
} */
function hideHover(nr, mn)
{
	document.getElementById(mn+"menu"+nr).style.cursor = "auto";
	document.getElementById(mn+"menu"+nr).style.backgroundColor = "#000000";
	document.getElementById(mn+"menu"+nr).style.borderColor = "#000000";
	document.getElementById(mn+"menutext"+nr).style.color = "#6C675C";
}
/*
function hideLiteHover(nr, mn)
{
	document.getElementById(mn+"menu"+nr).style.cursor = "auto";
} */
function hideAllMainSubMenuTo()
{
	to = setTimeout("hideAllMainSubMenu()", 1000);
}

function showSubHover(nr)
{
	document.getElementById("submenu"+nr).style.cursor = "default";
	document.getElementById("submenu"+nr).style.backgroundColor = "#000000";
	document.getElementById("submenu"+nr).style.borderColor = "#BBBBBB";
	document.getElementById("submenutext"+nr).style.color = "#BBBBBB";
}

function hideSubHover(nr)
{
	document.getElementById("submenu"+nr).style.cursor = "auto";
	document.getElementById("submenu"+nr).style.backgroundColor = "#4C4840";
	document.getElementById("submenu"+nr).style.borderColor = "#4C4840";
	document.getElementById("submenutext"+nr).style.color = "#BBBBBB";
}

function showSubMenu()
{
	if (sto != 0)
	{
		clearTimeout(sto);
	}
	document.getElementById("submenu").style.visibility = "visible";
}
function hideSubMenu()
{
	document.getElementById("submenu").style.visibility = "hidden";
}
function hideSubMenuSto()
{
	sto = setTimeout("hideSubMenu()", 1000);
}

/* Artikel-Info-Popup */
function showArtInfo(nr)
{
	document.getElementById("ArtInfo"+nr).style.visibility = "visible";
}
function hideArtInfo(nr)
{
	document.getElementById("ArtInfo"+nr).style.visibility = "hidden";
}

/* Sitemap */
function show(showid)
{
	if(document.getElementById(showid).style.display == "none")
	{
		document.getElementById(showid).style.display = "block";
	}
	else
	{
		document.getElementById(showid).style.display = "none";
	}
}