Hola
markshock
Prueba este código:
Código javascript
:
Ver original<html>
<head>
<style type="text/css">
.dentro, #enlace:hover {color:green}
</style>
</head>
<body>
<img src="imagen1.jpg" onmouseover="document.getElementById('enlace').className='dentro'" onmouseout="document.getElementById('enlace').className=''" />
<a href="#" id="enlace">Enlace</a>
</body>
</html>
Saludos,