<BLOCKQUOTE class="ip-ubbcode-quote"><font size="-1">quote:</font><HR>Originally posted by XTC:
I also do not understand the <div> statements you are making, as there are no divs shown at all in the html that menumaker gives

<body bgcolor="#ffffff" text="BLACK">
<script src="xaramenu.js"></script><script Webstyle4 src="wib.js"></script>
</body> <HR></BLOCKQUOTE>

That's true; but I wanted to position the menu on the page using CSS positioning. So I had something like:
<div id="mainheader">
Tulligweather header in here
</div>
<div class="topmenu">
Script statements in here.
</div>
<div id="toptext">
rest of the page in here
</div>

Removing the topmenu div to the the script statements fall into the mainheader area fixed the problem. The topmenu css is defined as:

.topmenu {
position: absolute;
top: 115px;
left: 5px;
text-align: center;
margin-left: auto;
margin-right: auto;
height: 80px;
width: 800px;
background-color: #BCBCBC;
z-index: 100;
}

Maybe it was something to do with topmenu being defined as a class and not as an ID, or maybe something to do with the height.