function menueHover(id, bild)
{
	var m = document.getElementById(id);
	if(!m || bild=='') return false;
	
	m.src= bild;
	return true;
}
