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

with(mainmenuStyle=new mm_style()){
onbgcolor="#D3C1A8";
oncolor="#764605";
offbgcolor="#D3C1A8";
offcolor="#000000";
visitedcolor = "#000000";
bordercolor="#AAAAAA";
borderstyle="solid";
borderwidth=0;
separatorcolor="#D3C1A8";
separatorsize=1;
separatorpadding=12;
padding=4;
fontsize="13px";
fontstyle="normal";
fontweight="bold";
fontfamily="Verdana, Geneva, Arial, Helvetica, sans-serif";
pagecolor="#000000";
pagebgcolor="#D3C1A8";
headercolor="#000000";
headerbgcolor="#ffffff";
subimage="";
subimagepadding="2";
}

submenuStyle=new copyOf(mainmenuStyle)
submenuStyle.offbgcolor = "#D4CCC1";
submenuStyle.onbgcolor="#D3C1A8";
submenuStyle.separatorcolor = "#D3C1A8";
submenuStyle.separatorpadding=1;
submenuStyle.borderwidth = 1
submenuStyle.onborder="1px solid #FFFFFF";
submenuStyle.overfilter = "Shadow(color='#777777', Direction=135, Strength=3)"
submenuStyle.fontsize = "12px";
submenuStyle.fontweight="normal";


with(new menuname("Main Menu")){
style=mainmenuStyle;
top=155;
screenposition="center";
alwaysvisible=1;
orientation="horizontal";
alignment="middle";
aI("text=Home;url=/index.html;");
aI("text=Encaustic Art Gallery;showmenu=Gallery;url=/gallery.html;");
aI("text=Contact;showmenu=Contact;url=/email.html;");
//aI("text=Diary of an Aneurysm;showmenu=Aneurysm;");
}

with(new menuname("Gallery")){
style=submenuStyle;
margin=3;
overflow="scroll";
aI("text=Wax on White;showmenu=whitesub;url=/gallery.html;");
aI("text=Wax on Black;showmenu=blacksub;url=/gallery.html;");
}

with(new menuname("whitesub")){
style=submenuStyle;
margin=3;
aI("text=Bookmarks;url=/gallery/white/bookmarks/index.html;");
aI("text=Small Cards;url=/gallery/white/small/index.html;");
aI("text=Medium Cards;url=/gallery/white/medium/index.html;");
aI("text=Large Cards;url=/gallery/white/large/index.html;");
aI("text=Large Mounted;url=/gallery/white/mounted/index.html;");
}

with(new menuname("blacksub")){
style=submenuStyle;
margin=3;
aI("text=Medium Cards;url=/gallery/black/medium/index.html;");
aI("text=Large Cards;url=/gallery/black/large/index.html;");
}

with(new menuname("Contact")){
style=submenuStyle;
margin=3;
aI("text=Email King Stodge;url=/email.html;");
}


with(new menuname("Aneurysm")){
style=submenuStyle;
margin=3;
aI("text=Subarachnoid Haemorrhage;url=brain/note.html;");
aI("text=The CT Scans;url=brain/chapter1.html;");
aI("text=Links;url=brain/chapter1.html;");
}


drawMenus();

