

_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(menuStyle=new mm_style()){
onbgcolor="#fcf6df";
oncolor="#66a26a";
offbgcolor="#CFE2D1";
offcolor="#000000";
bordercolor="#323197";
borderstyle="solid";
borderwidth=1;
separatorcolor="#323197";
separatorsize=2;
padding=4;
fontsize=12;
fontstyle="normal";
fontfamily="Verdana, Tahoma, Arial";
subimage="arrow.gif";
subimagepadding="2";
subimagepadding=3;
high3dcolor="#E0E1FF";
low3dcolor="#70718F";
pagebgcolor="#FFCC99";
pagecolor="#993399";
swap3d=1;
overfilter="Fade(duration=0.2);Alpha(opacity=90);Shadow(color='#777777', Direction=135, Strength=5)";
outfilter="randomdissolve(duration=0.3)";
}


with(main=new menuname("Main Menu")){
style=menuStyle;
top=10;
left=10;
alwaysvisible=1;
orientation="horizontal";
aI("text=Milonic;");
aI("text=By Number;url=page2.htm;clickfunction=mmItemActivateByNumber(1);");
aI("text=About Us;url=page1.htm;clickfunction=mmItemActivateByText('about us');"); 
aI("text=Information;showmenu=test1;clickfunction=mmItemActivateByShowMenu('history');");
aI("text=Test;");

}

with(milonic=new menuname("test1")){
style=menuStyle;
aI("text=Today;");
aI("text=Tommorrow;");
aI("text=Our Past;showmenu=history;");
}

with(milonic=new menuname("history")){
style=menuStyle;
aI("text=Click Me;url=page3.htm;");
}

drawMenus();  


