Move your mouse over the V-Twins to see the opacity effect.
Works only in IE
Place following anywhere after the opening <body> tag:
<script language="JavaScript1.2">
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",60)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=50
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=15
else if (window.highlighting)
clearInterval(highlighting)
}
</script>
<div align="center">
<TABLE cellspacing="10" style ="HEIGHT: 330px;" cellpading="10" >
<TR>
<TD align="center"><A href="yourLink.html">
<IMG onmouseout=low(this) onmouseover=high(this) src="yourImage.jpg"
style="FILTER: alpha(opacity=50)" border=0 height="300">
</A></TD>
</TR></table>
</div>
|