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='';
}

$(document).ready(function() {
	$('#team_container ul a').hover(
			function(){
				var info = $(this).html();
				var li = $(this).parent('li');
				li.css('z-index','11');
				$(this).append('<span id="infobox'+$(this).attr('id')+'" class="infobox">'+info+'</span>');
				$('.infobox').css({'bottom' : 0, 'right' : 0});
				$(this).css('background-position','-134px 0');
				
			},
			function(){
				$(this).css('background-position','0px 0px');
				$('#infobox'+$(this).attr('id')).css('border','none');
				$(this).parent('li').css('z-index','9');
				window.setTimeout("$('"+'#infobox'+$(this).attr('id')+"').remove();");
				//$('#infobox'+$(this).attr('id')).remove();
			}
	);
});
