You've left out:
Code:
/* ######### class for shadow DIV ######### */
.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}
from your anylinkmenu.css file. As a result, the shadow is being rendered position static and with visibility visible (defaults for all elements) and so initially covers the Portfolios link and most of the Information link. For some reason though, once you hover the part of Information that's not covered (its right end) or Prints or News (neither of which are covered at all), or do any number of other things on the page, like scroll it. The situation resolves itself and I'm guessing the scripted styles for the shadow take over.
To make a long story short, reinstate the above styles. If they're problematic (I'm assuming you don't want the shadow showing up at all), they can be changed to:
Code:
.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: -1; /*zIndex for shadow*/
background: transparent;
visibility: hidden;
}
And if your goal was to remove the shadow, that should do it without causing the problem you're having.
Bookmarks