I've checked out your webpage. The tooltip script doesn't actually appear to be Image w/ Description Tooltip. Regardless, the issue seems to be that you've set the position of the tooltip DIV to "fixed" instead of "absolute". First, modify the position of the DIV by swapping out "fixed" below with "absolute":
Code:
<div id="tip2Div" style="position: absolute; visibility: hidden; z-index: 100; border-width: 4px; padding: 0px; border-style: solid; border-radius: 8px 8px 8px 8px; width: 450px; font-family: Verdana,arial,helvetica,sans-serif; font-size: 8pt; color: rgb(0, 0, 0); background-color: white; border-color: black;"></div>
Then, inside the script for the tooltip, add the line in red to the existing code below:
Code:
function hideTip() {
if (!tooltip2) {return;}
tip2css.top=0;
t4=setTimeout("tip2css.visibility='hidden'",100);
tip2On = false;
}
That should do it.
Bookmarks