loesung: javascript.
Code:
<SCRIPT language="javascript">
/**
* @param textfarbe
* @param hintergrundfarbe
* @param cursor-style
**/
function aendereFarbe(obj, textfarbe, hintergrund, cursor)
{
if (!(document.layers && !document.getElementById))
{
if (obj.children)
obj.children[0].style.color = textfarbe;
if (colorBg != '')
obj.style.backgroundColor = hintergrund;
if (cursor != '')
obj.style.cursor = cursor;
}
}
</SCRIPT>
...
<TR onMouseOver="aendereFarbe(this,'','#E4EEE5','');" onMouseOut="aendereFarbe(this,'','#D3DED4','');">
...