function setElement(id,eigenschaft,wert)
{
	if (document.getElementById) 
	{
		if ((eigenschaft=='className')||(eigenschaft=='innerHTML'))
			eval("document.getElementById('"+id+"')."+eigenschaft+"='"+wert+"';");
		else
			eval("document.getElementById('"+id+"').style."+eigenschaft+"='"+wert+"';");
	}
}

//unterstreicht Links aus einem Bild heraus
function underl(x,wo)
{
	if (document.getElementById && x=="1") document.getElementById(wo).style.textDecoration='underline'; 
	if (document.getElementById && x=="0") document.getElementById(wo).style.textDecoration='none'; 
}

var myclose=1;
function closesprachboxnow()
{
		if (myclose==1)
			if (document.getElementById) document.getElementById('sprachbox').style.visibility='hidden';
}

function schliessen()
{
		myclose=1;
		window.setTimeout('closesprachboxnow()',100);
}

oldid='';
function menu_over(id)
{
	setElement(id,'backgroundColor','ffffff');
	oldid=id;
}

function menu_out()
{
	if (oldid!='') setElement(oldid,'backgroundColor','ffffff');
	oldid='';
}