agregamos este script en el head
Código:
debajo de <body> llamamo a la funcion gray(); y en body a la funcion onLoad="colores();"
<script type="text/javascript">
<!--
function colores(){
ht = document.getElementsByTagName("body");
ht[0].style.filter = "";
}
function gray(){
ht = document.getElementsByTagName("body");
ht[0].style.filter = "Gray";
}
//-->
</script>
Tambien podriamos reemplazar la linea
ht[0].style.filter = "Gray";
y lograr otros efectos
ht[0].style.filter = "Alpha(Opacity=30)"; //transparencia 30%
ht[0].style.filter = "Alpha(Opacity=0)"; //invisible

