
/*
Milonic DHTML Menu - JavaScript Website Navigation System.
Copyright 2004 (c) Milonic Solutions Limited. All Rights Reserved.
Version 5+ Data File structure is the property of Milonic Solutions Ltd and must only be used in Milonic DHTML Products
This is a commercial software product, please visit http://www.milonic.com/ for more information.
See http://www.milonic.com/license.php for Commercial License Agreement
All Copyright statements must always remain in place in all files at all times
*******  PLEASE NOTE: THIS IS NOT FREE SOFTWARE, IT MUST BE LICENSED FOR ALL USE  ******* 
*/

_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=-10            // Sub menu left offset



with(menuStyle=new mm_style()){
    oncolor = "#99ccff";
    pagecoler = "#99ccff";
    offcolor="#ffffff";
    separatorcolor="#99ccff";
    separatorsize="1";
    padding=7;
    fontsize="14px";
    fontstyle="normal";
    fontfamily = "tahoma, arial, helvetica, sans-serif";
    subimage="images/arrow_down.gif";
    onsubimage="images/arrow_down.gif";
    subimagepadding="3";
    }

    with (SubMenuStyle = new mm_style()) {
    onbgcolor = "#336699";
    pagebgcolor = "#336699";
    oncolor = "#ffffff";
    offbgcolor = "#6699cc";
    offcolor = "#ffffff";
    bordercolor = "#003366";
    borderstyle = "solid";
    borderwidth = 1;
    separatorcolor = "#003366";
    separatorsize = "1";
    padding = 5;
    }

with(milonic=new menuname("MainMenu")){
    style=menuStyle;
    top=117;
    screenposition = "center";
    alwaysvisible=1;
    orientation="horizontal";
    aI("text=;type=header;");
    aI("text=&nbsp;&nbsp;&nbsp;Products;type=header;showmenu=Products;");
    aI("text=&nbsp;&nbsp;&nbsp;Customers;type=header;showmenu=Customers;");
    aI("text=&nbsp;&nbsp;&nbsp;Support&nbsp;&nbsp;&nbsp;;url=Support.aspx;title=Sales, Support & Contact Info;");
    aI("text=;type=header;");
}

with(milonic=new menuname("Products")){
    style = SubMenuStyle;
    top = "offset=2";
    overflow = "scroll";
    aI("text=Products and Services;url=Products.aspx;");
    aI("text=Apprentice Tracking System;url=ATS.aspx;");
    aI("text=Member Tracking System;url=MTS.aspx;");
}

with(milonic=new menuname("Customers")){
    style = SubMenuStyle;
    top = "offset=2";
    overflow="scroll";

    aI("text=ATS Customers;url=ATS_User.aspx;title=Login to Access;");
    aI("text=MTS Customers;url=MTS_User.aspx;title=Login to Access;");
}

drawMenus();

