function mouseOver(nr) {
	nrstr=''+nr;
	if(nrstr.length==1) {
		// Menuitem
		button=document.getElementById('button_'+nr);
		button.firstChild.style.visibility='visible';
		button.style.backgroundColor='#faab69';
		button.style.borderColor='#f8923d';
		button.style.color='#ffffff';
		button.getElementsByTagName("a")[0].style.color='#ffffff';
	} else {
		// Submenuitem
		document.getElementById('button_'+nr).style.color='#ffffff';
	}
}

function mouseOut(nr) {
	nrstr=''+nr;
	if(nrstr.length==1) {
		// Menuitem
		button=document.getElementById('button_'+nr);
		button.firstChild.style.visibility='hidden';
		button.style.backgroundColor='#fee4c9';
		button.style.borderColor='#fee4c9';
		button.style.color='#000000';
		button.getElementsByTagName("a")[0].style.color='#000000';
	} else {
		// Submenuitem
		document.getElementById('button_'+nr).style.color='#000000';
	}

}

function showMenu(nr) {
	while (nr != 0) {
		mouseOver(nr);
		document.getElementById('menu_'+nr).style.visibility='visible';
		nr = Math.floor(nr/10);
	}
}

function hideMenu(nr) {
	while (nr != 0) {
		mouseOut(nr);
		document.getElementById('menu_'+nr).style.visibility='hidden';
		nr = Math.floor(nr/10);
	}
}

function hideSubMenu(nr) {
	document.getElementById('menu_'+nr).style.visibility='hidden';
	mouseOut(nr);
}
