I just want to say thank you in advance to anyone who may be able to help me, and I hope I am posting this thread in the right forum.
Here is my problem. I had a site designed for me (the designer is no longer available for help), and the drop down menus will show the links below them when you hover over the main link. Unfortunately once you try to move your mouse down to a link under it, the drop down disappears before you can click on anything. I believe I've attached the right piece of javascript relating to this problem. However, since I am not an expert in this field, I am also including a link to the site for referrence. The links are in while in the upper left corner of the site. Any and all help is greatly appreciated to remedy this VERY frustrating problem.
Code:
<script language="JavaScript1.2">
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace (" over", "");
}
}
}
}
}
window.onload=startList;
</script>
http://www.wade-j-robson.com/fastlane/index.html