Copy the following code into the HEAD of your script.
| <script language="JavaScript1.2">
function high(which2){
function highlightit(cur2){
</script> |
Copy the following code into the BODY of your HTML document. You need to add the following code in your image <img> tag.
| style="filter:alpha(opacity=30);-moz-opacity:0.3" onMouseover="high(this)" onMouseout="low(this)" |
As a result, the code should look like the following:
| <img src="/img_articles/6723/image.gif" border=0 style="filter:alpha(opacity=30);-moz-opacity:0.3" onMouseover="high(this)" onMouseout="low(this)"> |

