_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=0            // Sub menu left offset



with(clickColorStyle=new mm_style()){
onbgcolor="#CFE2D1";
oncolor="#407348";
offbgcolor="#579b63";
offcolor="#ebf3ec";
bordercolor="#66a26a";
borderstyle="outset";
borderwidth=1;
separatorcolor="#CFE2D1";
separatorsize=1;
padding=3;
fontsize=12;
fontstyle="normal";
fontfamily="Verdana, Tahoma, Arial";
headercolor="#000000";
headerbgcolor="#ffffff";
high3dcolor="#c4d8e6";
low3dcolor="#579b63";
swap3d=1;
overfilter="Fade(duration=0.2);Alpha(opacity=90);Shadow(color='#777777', Direction=135, Strength=5)";
outfilter="randomdissolve(duration=0.3)";
clickcolor="#66FF00";

}

//define menus

with(main=new menuname("Click Color Menu")){
style=clickColorStyle;
top=260;
left=120;
orientation="horizontal";
alwaysvisible=1;

aI("text=Menu ;");
aI("text=&nbsp;&nbsp;&nbsp;clickcolor&nbsp;&nbsp;&nbsp;;");
aI("text=Test;showmenu=test1;");
}

//define submenus


with(milonic=new menuname("test1")){
style=clickColorStyle;
aI("text=test;");
}




drawMenus();



