_menuCloseDelay=500           // The time delay for menus to remain visible on mouse out
_menuOpenDelay=150            // The time delay before menus open on mouse over
_subOffsetTop=10              // Sub menu top offset
_subOffsetLeft=-10          // Sub menu left offset

with(menuStyle=new mm_style()){
bordercolor="#3C180C";
borderstyle="solid";
borderwidth=1;
fontfamily="Verdana, Tahoma, Arial";
fontsize="65%";
fontstyle="normal";
headerbgcolor="#ffffff";
headercolor="#000000";
offbgcolor="#804000";
offcolor="#ffffff";
onbgcolor="#AA5703";
oncolor="#ffffff";
outfilter="randomdissolve(duration=0.3)";
overfilter="Fade(duration=0.2);Alpha(opacity=90);Shadow(color=#777777', Direction=135, Strength=3)";
padding=4;
pagebgcolor="#804000";
pagecolor="white";
separatorcolor="#3C180C";
separatorsize=1;
subimage="/menus/arrow.gif";
subimagepadding=2;
}

// Build your sub menus first
with(main=new menuname("submenu1")){
style=menuStyle;
aI("text=Adults;url=/adults/adults.html");
aI("text=Women;url=/women/women.html");
aI("text=Youth;url=/youth/youth.html");
aI("text=Children;url=/children/children.html");
aI("text=Outreach;url=/outreach/outreach.html");
aI("text=Music;url=/music/music.html");
}

with(main=new menuname("submenu2")){
style=menuStyle;
aI("text=Sermons;url=/sermons");
aI("text=Bulletin;url=/bulletin");
}

drawMenus()
