
_menuCloseDelay=500           // The time delay for menus to remain visible on mouse out
_menuOpenDelay=100            // 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()){
onbgcolor="#66CC66";
oncolor="#ffff99";
offbgcolor="#FFFF99";
offcolor="#000000";
bordercolor="#66CC66";
borderstyle="solid";
borderwidth=1;
separatorcolor="#66CC66";
separatorsize="1";
padding=5;
fontsize="9";
fontstyle="bold";
fontfamily="Verdana, Tahoma, Arial";
pagecolor="black";
pagebgcolor="#66CC66";
headercolor="#000000";
headerbgcolor="#ffffff";
subimage="arrow.gif";
subimagepadding="2";
overfilter="Fade(duration=0.2);Alpha(opacity=90);Shadow(color='#777777', Direction=135, Strength=5)";
outfilter="randomdissolve(duration=0.3)";
}

with(milonic=new menuname("links")){
style=menuStyle;
top=115;
left=250;
alwaysvisible=1;
orientation="horizontal";
aI("text=Cool Links;showmenu=vegan;");
aI("text=Restaurant Links;showmenu=restaurant;");
aI("text=Author Links;showmenu=books;");
aI("text=Environmental;showmenu=environ;");
aI("text=Recipes;showmenu=recipes;");
}

with(milonic=new menuname("vegan")){
style=menuStyle;
aI("text=Raw Food Lifestyle;url=/custom.aspx?id=8;");
aI("text=Vegetarian and Vegan;url=/custom.aspx?id=3;");
}

with(milonic=new menuname("restaurant")){
style=menuStyle;
aI("text=United States;url=/custom.aspx?id=9;");
aI("text=International;url=/custom.aspx?id=10;");
}

with(milonic=new menuname("books")){
style=menuStyle;
aI("text=Raw Food Books;url=/custom.aspx?id=12;");
}

with(milonic=new menuname("environ")){
style=menuStyle;
aI("text=Environmental Websites;url=/custom.aspx?id=11;");
}

with(milonic=new menuname("recipes")){
style=menuStyle;
aI("text=Quick Recipes;url=/custom.aspx?id=7;");
}

drawMenus();


