The script will override any onMouseout event inserted into the anchor links, yes. You can get around this in your case by changing the code:
Code:
function delayhidemenu(){
delayhide=setTimeout("dropmenuobj.style.visibility='hidden';",disappeardelay)
}
inside anylink.js to:
Code:
function delayhidemenu(){
MM_swapImgRestore()
delayhide=setTimeout("dropmenuobj.style.visibility='hidden';",disappeardelay)
}
Assuming the code in red is what you want to run onMouseout of the anchor links.
BTW, please note that your page is currently in violation of our usage terms, since the credit notice doesn't appear inline on the page. Please reinstate the credit notice: http://www.dynamicdrive.com/notice.htm
Bookmarks