with(menu_menuStyle=new mm_style()){
itemwidth=93;
align="center";
bordercolor='#003300';
borderstyle='solid';
borderwidth=1;
oncolor="#003300";
onbgcolor="#EBEBEB";
offcolor="#003300";
offbgcolor="#FFFFFF";
pagecolor="#003300";
pagebgcolor="#EBEBEB"
//ondecoration="underline";
separatorcolor="#003300";
separatorsize=1;
padding=2;
//separatorpadding=12;
fontsize="12px";
fontweight="bold"; 
}

with(menu_submenuStyle=new mm_style()){
oncolor="#003300";
onbgcolor="#EBEBEB";
bordercolor='#003300';
borderstyle='solid';
borderwidth=1;
offcolor="#003300";
offbgcolor="#FFFFFF";
pagecolor="#003300";
pagebgcolor="#EBEBEB"
//ondecoration="underline";
padding=5;
fontsize="12px";
fontweight="bold";
//overfilter="Alpha(opacity=94);Shadow(color='#777777', Direction=135, Strength=5)";
}

//*********************************************************************
// Menu Menu
//*********************************************************************
with(milonic=new menuname("Menus")){
style=menu_menuStyle;
//position="relative";
alwaysvisible=1;
orientation="horizontal";
aI("text=lunch;url=menu_lunch.cfm;");
aI("text=dinner;url=menu_dinner.cfm;");
aI("text=desserts;url=desserts.cfm;showmenu=DessertSubMenu;");
aI("text=wine;url=wine_bottle.cfm;showmenu=WineSubMenu;");
}

with(milonic=new menuname("WineSubMenu")){
style=menu_submenuStyle;
orientation="vertical";
aI("text=Wine List;url=wine_bottle.cfm;");
aI("text=Wines by the Glass;url=wine_glass.cfm;");
aI("text=Reserve Wine List;url=wine_reserve.cfm;");
}

with(milonic=new menuname("DessertSubMenu")){
style=menu_submenuStyle;
orientation="vertical";
aI("text=Desserts;url=desserts.cfm;");
aI("text=After Dinner Drinks;url=after_dinner_drinks.cfm;");
aI("text=Specialty Drinks;url=specialty_drinks.cfm;");
}

drawMenus();