There is a conflict with the document.onmousemove handler. Try replacing this in the tooltips.js script (at the end of it):
Code:
document.onmousemove=positiontip
with:
Code:
if ( typeof window.addEventListener != "undefined" )
document.addEventListener( "mousemove", positiontip, false );
else if ( typeof window.attachEvent != "undefined" )
document.attachEvent( "onmousemove", positiontip );
else {
if ( document.onmousemove != null ) {
var oldOnmousemove = document.onmousemove;
document.onmousemove = function ( e ) {
oldOnmousemove( e );
positiontip(e);
};
}
else
document.onmousemove = positiontip;
}
There could be other problems.
Bookmarks