Hola
Vane_
Te he preparado un ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function cambiar() {
obj = document.getElementById('celda');
obj.style.background = 'red';
obj.getElementsByTagName('img')[0].src = 'imagen2.gif';
}
</script>
<body>
<table>
<tr><td id="celda">Texto<img src="imagen1.gif"></td></tr>
</table>
<input type="button" onclick="cambiar()" />
</body>
</html>
Saludos,