I am playing with the example "Relative Positioning (Table Bound)" from: http://milonic.com/menusample9.php
And I found a problem when I add "itemwidth=100;" into the section of "Main Menu" ( I like to see the items on main menu have a fixed width).
Then you will see the first and last item are streched to fit the width of the table cell, which looks ugly. Here is how it looks like:

This is the embeded code for drawing main menu:
<script>
with(milonic=new menuname("Main Menu")){
style=menuStyle;
top=155;
left=200;
itemwidth=100;
alwaysvisible=1;
orientation="horizontal";
overfilter="";
position="relative";
aI("text=Home;url=http://milonic.com/;status=Back To Home Page;");
aI("text=Menu Samples;showmenu=Samples;");
aI("text=Milonic;showmenu=Milonic;");
aI("text=Partners;showmenu=Partners;");
aI("text=Links;showmenu=Links;");
aI("text=My Milonic;showmenu=My Milonic;");
}
drawMenus();
</script>
Can anybody know how to fix this problem? Thanks.
Chunlei