Some Bits in Few Pieces
Transluscent Images
Well, we have an IE specific way of doing this. Those pro FF can skip this. But when used with nice effects it works wonders and gets us rid of multiple images to make a fading menu by use of only a few lines of Javascript code.




How to get this:

1. Add the image as you do and specify the filter property in the styles.
2. Set the onmouseover and onmouseout event to alter the filter


<img src="some-image.gif" style="filter: alpha(opacity=20);"
onmouseover="this.filters.alpha.opacity = 100;" onmouseout="this.filters.alpha.opacity = 20;" />


And all's done. :)

We can add some javascript call instead of setting the opacity directly which would reduce the opacity gradually making a fading effect. Clean and Simple.