<!DOCTYPE html>
<html>
<head>
<title>onMouseOver</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<script>
function pintar(col)
{
col.getElementById('caja').style.backgroundColor="rgba(38,158,38,0.4)";
}
function despintar(col)
{
col.getElementById('caja').style.backgroundColor="transparent";
}
</script>
<div id="caja"><a href="#"><img src="mar.jpg" onMouseOver="pintar(this)" onMouseOut="despintar(this)"></a>
</div>
</body>
</html>