//Author: Kevin, Date: 1-04
// Kevin's mm_addToFavorites() function

function mm_addToFavorites() 
{ 
  if (window.external) 
  { 
    if (arguments.length < 1) 
      window.external.AddFavorite(location.href, document.title); 
    if (arguments.length == 1) 
      window.external.AddFavorite(location.href, arguments[0]); 
    if (arguments.length == 2) 
      window.external.AddFavorite(arguments[0], arguments[1]); 
  } 
  else 
    alert("Sorry, your browser doesn't support automated bookmarks.\nYou'll have to do it manually."); 
} 


_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=5               // Sub menu top offset
_subOffsetLeft=-10            // Sub menu left offset



with(menuStyle=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";
pagecolor="#ffffff";
pagebgcolor="#83ba8c";
headercolor="#000000";
headerbgcolor="#ffffff";
high3dcolor="#c4d8e6";
low3dcolor="#579b63";
swap3d=1;
overfilter="Fade(duration=0.2)";
outfilter="randomdissolve(duration=0.3)";
}


with(milonic=new menuname("Main Menu")){
style=menuStyle;
top=76;
screenposition="center";
alwaysvisible=1;
orientation="horizontal";
aI("text=&nbsp;Home&nbsp;url=http://www.milonic.com/;");
aI("text=Add us to your Favorites;url=javascript:mm_addToFavorites();"); 
aI("text=Make us a Favorite;url=javascript:mm_addToFavorites('The Best Site Ever');"); 
aI("text=Bookmark Us;url=javascript:mm_addToFavorites('http://www.bestsiteever.com', 'The Best Site Ever');"); 
}

drawMenus();

