Click to See Complete Forum and Search --> : Roll Over Menus not disappearing


redsand198
12-16-2003, 08:06 AM
Below is the link to my company's site i've developed:

http://www.avinternational.net

Could someone help me get my rollover menus to disappear on mouse-out? They seem to stick to the screen even after your mouse has moved off them, and I can't figure it out


thank you very much!

PeOfEo
12-16-2003, 06:34 PM
your over complicating the scripts and it does not work in ns browsers. Use a script more like this
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility = "visible";
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility = "hidden";
}

stop using document.all