Aca tenes
Código HTML:
<head>
<title>Celda de color</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
<!--
function uno(src,color_entrada) {
src.bgColor=color_entrada;src.style.cursor="hand";
}
function dos(src,color_default) {
src.bgColor=color_default;src.style.cursor="default";
}
function MM_displayStatusMsg(msgStr) { //v1.0
status=msgStr;
document.MM_returnValue = true;
}
//-->
</script>
</head>
<body>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#E0E0C2" class="textonoticias" onMouseOver="uno(this,'#CDCD9C');" onMouseOut="dos(this,'#E0E0C2');">
<td>Contenido</td>
</tr>
</table>
</body>