function onout(tid, mid)
{
	document.menu.steuerung.value="out";
	
	document.getElementById(tid).style.backgroundColor="#FBF9F0";
	document.getElementById(tid).style.color="#000000";
	
	temptid=tid
	tempmid=mid
	
	window.setTimeout("hilfout(temptid, tempmid)", 400);
	

}

function hilfout(tid, mid)
{
	if(document.menu.steuerung.value=="out")
	{
		document.getElementById(mid).style.visibility="hidden";
	}
}
