<!--

// MouseOver mit Tabellenhintergrund

function hoverMenu(obj, color, colorBg, cursor) {
	
		if (colorBg != '')
			obj.style.backgroundColor = colorBg;
		if (cursor != '')
			obj.style.cursor = cursor;
		if (obj.children)
			obj.children[0].style.color = color;
	}

//-->
