//label	The label of the menu -- defaults to "menuLabel" + index
// 	mw		Menu width in pixels
// 	mh		Menu item height in pixels
// 	fnt		Font family used in the menu -- defaults to "arial,helvetica,verdana,sans-serif"
// 	fs		Font size used in the menu -- defaults to 12 point
//	fclr	Font color -- defaults to black
//  fhclr	Font highlight color -- defaults to white
//  bg		Menu item's background color -- defaults to light gray (#cccccc)
//	bgh		Menu's background hilight color -- defaults to blue (#000084)
//
//function Menu(label, Menu width, Menu height, Font family, Font size, Font color, Font highlight color, Menu background color, Menu's background hilight color)
function fwLoadMenus()
 {
  if (window.fw_menu_0) return;
	
window.fw_menu_1 = new Menu("Solutions",140,14,"verdana, Arial, Helvetica, sans-serif",9,"#ffffff","#ffffff","#A32939","#5F3339");
	fw_menu_1.addMenuItem("Customer Care & Billing","location='/customercarebilling.html'");
	fw_menu_1.addMenuItem("Carrier Access Billing","location='/cabs.html'");	
	fw_menu_1.addMenuItem("OSS Solutions","location='/osssolutions.html'");
	fw_menu_1.addMenuItem("Enhanced Svcs Platform","location='/esp.html'");
	fw_menu_1.addMenuItem("Business Services","location='/businessservices.html'");	
	fw_menu_1.addMenuItem("Engineering","location='/engineeringandconsulting.html'");	
	fw_menu_1.fontWeight="normal"; //font weight for bold/normal 	   
	fw_menu_1.hideOnMouseOut=true;
	fw_menu_1.childMenuIcon="./images/arrows.gif";
	
window.fw_menu_2 = new Menu("Company",140,14,"verdana, Arial, Helvetica, sans-serif",9,"#ffffff","#ffffff","#A32939","#5F3339");
	fw_menu_2.addMenuItem("Careers","location='/careers.asp'");
	fw_menu_2.addMenuItem("Community Involvement","location='/community.asp'");
	//fw_menu_2.addMenuItem("Locations","location='/locations.html'");
	fw_menu_2.addMenuItem("Industry Associations","location='/industry.html'");	  		   
	fw_menu_2.addMenuItem("Investors","location='/investors.html'");	  		   
	fw_menu_2.addMenuItem("Management Team","location='/managementteam.html'");
	fw_menu_2.fontWeight="normal"; //font weight for bold/normal  
	fw_menu_2.hideOnMouseOut=true; 
	fw_menu_2.writeMenus();   
}
