Code:
<a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)"><AREA SHAPE="rect" ALT="" COORDS="77,0,190,58" HREF="#"></a>
<a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><AREA SHAPE="rect" ALT="" COORDS="191,0,316,58" HREF="#"></a>
You can't do this. Add the onmouseover and onmouseout handlers directly to the <area>s.
Code:
<area onmouseover="moveup()" onmouseout="clearTimeout(moveupvar)" shape="rect" alt="" coords="77,0,190,58" href="#">
<area onmouseover="movedown()" onmouseout="clearTimeout(movedownvar)" shape="rect" alt="" coords="191,0,316,58" href="#">
I don't know what you've done to the page, but earlier I could see your content (in Firefox 1.0.7) and now I can't.
Bookmarks