Hola
lokitaforever
A ver si este código te sirve:
Código PHP:
<html>
<head>
<title>Untitled</title>
<script>
fil = 20;
function oscurecer(mas) {
obj = document.getElementById('im');
fil += mas;
obj.style.filter = 'alpha(opacity='+fil+')';
obj.style.MozOpacity= fil / 100;
if (fil==100 || fil==20) {
clearInterval(pepe);
fil=20;
}
}
function aclarar() {
clearInterval(pepe);
pepe = setInterval('oscurecer(-10)',300);
}
</script>
</head>
<body>
<img src="imagen.jpg" id="im" style="filter:alpha(opacity=30); -moz-opacity:.3;"
onmouseover = "pepe = setInterval('oscurecer(10)',300)" onmouseout = "aclarar()" />
</body>
</html>
Saludos,