// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Main Menu Data ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


// -----------------------------------------------------------------------------
// -------------------------- Main Menu Display --------------------------------
// -----------------------------------------------------------------------------

_menuCloseDelay=500   // The time delay for menus to remain visible on mouse out
_menuOpenDelay=25     // The time delay before menus open on mouse over
_followSpeed=5        // Follow scrolling speed
_followRate=50        // Follow scrolling Rate
_subOffsetTop=5       // Sub menu top offset
_subOffsetLeft=-10    // Sub menu left offset
_scrollAmount=3       // Only needed for Netscape 4.x
_scrollDelay=20       // Only needed for Netcsape 4.x


// -----------------------------------------------------------------------------
// --------------------------- Main Menu Style ---------------------------------
// -----------------------------------------------------------------------------

with(menuStyle=new mm_style()){
	onbgcolor="#fcfdcd";                   // Mouse On  - Background Color
	oncolor="#000000";                     // Mouse On  - Font Color
	offbgcolor="#fffffb";                  // Mouse Off - Background Color
	offcolor="#000000";                    // Mouse Off - Font Color
	pagecolor="#000000";                   // Current Page Item Font Color
	pagebgcolor="#fafbb7";                 // Current Page Item Background Color
	//headercolor="#000000";                 // Menu Header Font Color
	//headerbgcolor="#bbd8ff";               // Menu Header Background Color
	//onborder="2px inset #ffffff";
	//offborder="2px outset #000000";
	bordercolor="#000000";                 // Menu Border Color
	borderstyle="solid";                   // Border Style
	borderwidth=1;                         // Border Width
	separatorcolor="#333333";              // Menu Item Separator Color
	separatorsize=1;                       // Size of Separating Line
	separatorpadding=0;                    // Space around Separator
	padding=4;                             // Menu Item Padding or spacing
	fontsize="11px";                        // Font Size
	fontstyle="normal";                    // Font Style (italic or normal)
	fontfamily="Arial, Verdana, Tahoma";   // Font Name
	docoration="none";                     // Font Decoration
	subimage="/graphics/arrow-right.gif";  // Sub Menu Image
	subimagepadding=1;                     // Sub Menu Image Padding
	subimageposition="right";              // Sub Menu Image Position
	overfilter="Fade(duration=0.2);Shadow(color='#777777', Direction=135, Strength=5)";
	// taken out of ^: Alpha(opacity=90);
	//outfilter="randomdissolve(duration=0.3)";
	overallwidth="60px";
}
// --------------------------- Sub Menu Style ----------------------------------
	subStyle=new copyOf(menuStyle)
	subStyle.fontsize="60%";


// -----------------------------------------------------------------------------
// --------------------------- Main Menu Links ---------------------------------
// -----------------------------------------------------------------------------

with(milonic=new menuname("Main Menu")){
	style=subStyle;
	alwaysvisible=1;
	orientation="vertical";
	position="relative";
	aI("text=Home;url=/;onbgcolor=#b3daff;offbgcolor=#99ccff;pagebgcolor=#5bb0ff;fontsize=11px;fontweight=bold;");
		aI("text=Company Info;url=/compinfo.shtml;");
	aI("text=Products;url=/products/default.asp;onbgcolor=#bfdefd;offbgcolor=#99ccff;pagebgcolor=#5bb0ff;fontsize=11px;fontweight=bold;");
		aI("text=Wireless Equipment;url=/products/brand.asp?cat=wireless&brand=MDS;");
		aI("text=Network Equipment;url=/products/networking.shtml;");
		aI("text=Tower & Structure Products;url=/products/category.asp?cat=tower;showmenu=subTower;");
//		aI("text=Data Connectivity Products;url=/products/category.asp?cat=connect;");
	aI("text=Services & Support;url=/services/default.shtml;onbgcolor=#bfdefd;offbgcolor=#99ccff;pagebgcolor=#5bb0ff;fontsize=11px;fontweight=bold;");
		aI("text=Project Planning;url=/services/planning.shtml;");
		aI("text=Path Profile;url=/services/profile.shtml;");
		aI("text=Product Selection;url=/services/selection.shtml;");
		aI("text=On-Site Support;url=/services/support.shtml;showmenu=subServices;");
//	aI("text=Downloads;url=/downloads/default.asp;onbgcolor=#bfdefd;offbgcolor=#99ccff;pagebgcolor=#5bb0ff;fontsize=11px;fontweight=bold;");
//		aI("text=MDS;url=/downloads/downloads.asp?brand=MDS;");
        aI("text=Site Map;url=/sitemap.shtml;onbgcolor=#bfdefd;offbgcolor=#99ccff;pagebgcolor=#5bb0ff;fontsize=11px;fontweight=bold;");
//		aI("text=Proxim;url=/downloads/downloads.asp?brand=Proxim;");
//		aI("text=SixNet;url=/downloads/downloads.asp?brand=Sixnet;");
	}


// --------------------------- Sub Menu Links ----------------------------------

	with(milonic=new menuname("subWireless")){
		style=subStyle;
		aI("text=MDS;url=/products/brand.asp?cat=wireless&brand=MDS;");
//		aI("text=Proxim;url=/products/brand.asp?cat=wireless&brand=Proxim;");
	}

	with(milonic=new menuname("subTower")){
		style=subStyle;
		aI("text=Andrew;url=/products/brand.asp?cat=tower&brand=Andrew;");
		aI("text=Rohn;url=/products/brand.asp?cat=tower&brand=Rohn;");
	}

//	with(milonic=new menuname("subConnect")){
//		style=subStyle;
//		aI("text=RAD;url=/products/brand.asp?cat=connect&brand=RAD;");
//		aI("text=SixNet;url=/products/brand.asp?cat=connect&brand=Sixnet;");
//		aI("text=Transition;url=/products/brand.asp?cat=connect&brand=Transition;");
//		aI("text=Comtrol;url=/products/brand.asp?cat=connect&brand=Comtrol;");
//		aI("text=Lantronix;url=/products/brand.asp?cat=connect&brand=Lantronix;");
//	}

	with(milonic=new menuname("subServices")){
		style=subStyle;
		aI("text=Engineering Services;url=/services/engineering.shtml;");
		aI("text=Problem Resolution;url=/services/resolution.shtml;");
	}

// -----------------------------------------------------------------------------

	drawMenus();


