function bildfarbe(bild,aktion)
{ 	if(aktion=="blau") 
	{ window.document.getElementById(bild).style.backgroundColor = "#76CED8"; }
	else 
	{ window.document.getElementById(bild).style.backgroundColor = "#ffffff"; }
}
function textfarbe(bild,aktion)
{ 	if(aktion=="blau") 
	{ window.document.getElementById(bild).style.color = "#76CED8"; }
	else 
	{ window.document.getElementById(bild).style.color = "#666666"; }
}
