function LoadMenus() {
  if (window.fw_menu_0) return;

//Build the 'Home' menu
	window.fw_menu_0 = new Menu("root",150,25,12,"#ffffff","#ffffff","#FF7A11","#CCCCCC");
	fw_menu_0.addMenuItem("Home","location='/'");
	fw_menu_0.addMenuItem("Our Partners","location='partners.asp'");
	fw_menu_0.addMenuItem("About Us","location='aboutus.asp'");
	fw_menu_0.addMenuItem("Contact Us","location='contactus.asp'");
	fw_menu_0.hideOnMouseOut=true;

//Build the 'Services' menu
	window.fw_menu_1 = new Menu("root",150,25,12,"#ffffff","#ffffff","#FF7A11","#CCCCCC");
	fw_menu_1.addMenuItem("Systems Integration","location='services.asp?at=si'");
	fw_menu_1.addMenuItem("eBusiness","location='services.asp?at=ebiz'");
	fw_menu_1.addMenuItem("Network Audit","location='services.asp?at=neta'");
	fw_menu_1.hideOnMouseOut=true;

//Build the 'Products.Xpress' menu
	window.fw_menu_2_1 = new Menu("Xpress",150,25,12,"#ffffff","#ffffff","#FF7A11","#CCCCCC");
	fw_menu_2_1.addMenuItem("ADSL","location='products.asp?at=xpressa'");
	fw_menu_2_1.addMenuItem("G.SHDSL","location='products.asp?at=xpresss'");
	fw_menu_2_1.hideOnMouseOut=true;
		
//Build the 'Products.VPN' menu
	window.fw_menu_2_2 = new Menu("VPN",150,25,12,"#ffffff","#ffffff","#FF7A11","#CCCCCC");
	fw_menu_2_2.addMenuItem("VPN Xpress","location='products.asp?at=vpnxpress'");
	fw_menu_2_2.addMenuItem("VPN Premium","location='products.asp?at=vpnpremium'");
	fw_menu_2_2.addMenuItem("VPN Lite","location='products.asp?at=vpnlite'");
	fw_menu_2_2.hideOnMouseOut=true;

	
//Build the 'Products.DSLFAQ' menu
	window.fw_menu_2_3 = new Menu("DSL",200,25,12,"#ffffff","#ffffff","#FF7A11","#CCCCCC");
	fw_menu_2_3.addMenuItem("What IS?","location='products.asp?at=dslfaq'");
	fw_menu_2_3.addMenuItem("Abbreviation","location='products.asp?at=abbreiv'");
	fw_menu_2_3.addMenuItem("Service Level Agreement","location='products.asp?at=sla'");
	fw_menu_2_3.hideOnMouseOut=true;

//Build the 'Products.root' menu
	window.fw_menu_2 = new Menu("root",150,25,12,"#ffffff","#ffffff","#FF7A11","#CCCCCC");
	fw_menu_2.addMenuItem(fw_menu_2_1,"location='products.asp?at=xpressa'");
	fw_menu_2.addMenuItem(fw_menu_2_2,"location='products.asp?at=vpnxpress'");
	fw_menu_2.addMenuItem(fw_menu_2_3,"location='products.asp?at=dslfaq'");
	fw_menu_2.addMenuItem("Data Link","location='products.asp?at=dlink'");
	fw_menu_2.addMenuItem("SoHo","location='products.asp?at=soho'");
	fw_menu_2.hideOnMouseOut=true;
	fw_menu_2.childMenuIcon="images/common/arrows.gif";
	
//Build the 'News' menu
	window.fw_menu_3 = new Menu("root",150,30,12,"#ffffff","#ffffff","#FF7A11","#CCCCCC");
  	fw_menu_3.addMenuItem("Symmetric DSL", "location='news.asp?CategoryID=1&ArticleID=1'");
  	fw_menu_3.addMenuItem("Regional Sites","location='news.asp?CategoryID=1&ArticleID=2'");
  	fw_menu_3.addMenuItem("VPN over ISDN","location='news.asp?CategoryID=1&ArticleID=3'");
  	fw_menu_3.addMenuItem("Unlimited Internet downloads","location='news.asp?CategoryID=1&ArticleID=4'");
	fw_menu_3.hideOnMouseOut=true;

//Build the 'Portals' menu
	window.fw_menu_4 = new Menu("root",150,25,12,"#ffffff","#ffffff","#FF7A11","#CCCCCC");
	fw_menu_4.addMenuItem("Coming Soon!","/");
	fw_menu_4.hideOnMouseOut=true;
	
  fw_menu_4.writeMenus();
}

