The problem is as a result of the changes you made to try and get the menu to drop down to the right of the link (instead of the default downwards). Anyhow, I've made the correct change you should implement to do this correctly. Firstly, restore the original script, so to remove the changes you made. Then, locate the lines:
Code:
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
and replace that with:
Code:
dropmenuobj.style.left=dropmenuobj.x+obj.offsetWidth+1-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+"px"
This will cause the menu to drop down to the right.
Bookmarks