Did you see DavH27's answer to the exact same question in
this thread
your initial code is the same as mentioned there, yet DavH27 mentioned where you goofed it, your
Code:
<div style="position:relative;background:#F6D5C3;visibility:hi dden;z-index:90;" id="menuA" class="popup" onmouseout="this.style.visibility='hidden'" onmouseover="this.style.visibility='visible'">
Needs to be
Code:
<div style="position:relative; background:#F6D5C3; visibility:hidden; z-index:90;" id="menuA" class="popup" onmouseout="this.style.visibility='hidden'" onmouseover="this.style.visibility='visible'">
Do you see the change ???