the j-query javascript is dynamicly resetting the z-index to 1 and the position to absolute.
when figuring the z-index stacking order, each position type has its own layer.
the relative layer is always below the absolute layer.
in the CSSMenuWriter/cssmw/menu.css file, change the position:
ul#cssmw li {
background-image: none;
float: left;
padding: 0 0 0 0;
position: relative;
white-space: nowrap;
z-index: 100;
}
from relative to static so that the menu layer will be above the absolute layer.
ul#cssmw li {
background-image: none;
float: left;
padding: 0 0 0 0;
position: static;
white-space: nowrap;
z-index: 100;
}