<!--
// Copyright Organic, Inc. 2000.  All rights reserved.  This
// source code file contains proprietary and confidential information
// and trade secrets of Organic, Inc. 


/*
 * create menus, establish what should go inside of each.
 * Every menuItem needs at least two things:
 * the first thing is always the text to appear.
 * second thing is either the url or a submenu
 * third thing is a submenu, only used if menuItem has url and subMenu (no examoles)
 * Please note that commas are always used except on the last item in a set
 * Must escape single quotes in text
 */
function getMenus() {
	menus.lbProductsMenu = makeMenu( 
		['Voice Solutions', '#',
			makeMenu(
				['Lines \&amp\; Services', '/pcat/productList?market_type=large_business&category=LinesServices'],
				['Telephones \&amp\; Equipment', '/pcat/productList?market_type=large_business&category=TelephonesEquipment'],
				['Wireless', 'http://www.qwestwireless.com/']
			)
		],
		['Data Solutions', '/pcat/productList?market_type=large_business&category=Data'],
		['Internet Solutions', '/pcat/productList?market_type=large_business&category=Internet'],
		['Managed Solutions', '/pcat/productList?market_type=large_business&category=Managed'],
		['iQ Networking', '/largebusiness/products/networking/index.html'],
//		['Directory Advertising - DEX', '/pcat/productList?market_type=large_business&category=Dex'],
		['Directory Advertising', '/largebusiness/products/qwestDex.html'],
		['Product Search', 
			makeMenu(
				['By Product Name', '/largebusiness/products/prodSearch.html'],
				['A-Z Product Index', '/pcat/productList?market_type=large_business']
			)
		]
	);
	menus.lbProductsMenu.url = '/largebusiness/products/index.html';
	
	menus.lbSolutionsMenu = makeMenu( 
		['Developers', '/largebusiness/industries/bods/index.html'],
		['Education', '/largebusiness/industries/education/index.html'],
		['Enhanced Service Providers', '/largebusiness/industries/esp/index.html'],
		['Federal Government', '/largebusiness/industries/federal_govt/index.html'],
	//	['Health Care', '/largebusiness/industries/healthcare/index.html'],
		['State \&amp\; Local Government', '/largebusiness/industries/sl_govt/index.html']
	);
	menus.lbSolutionsMenu.url = '/largebusiness/industries/index.html'
    
	//menus.lbManageMenu =
	//makeMenu( 
	//    ['Register for Online Services', '/largebusiness/manage/register'],
	//    ['View Bill', '/largebusiness/manage/viewbill'],
	//    ['Pay Bill', '/largebusiness/manage/paybill']
	//)
	//menus.lbManageMenu.url = '/largebusiness/manage/index.html'  
	
	//menus.lbCustomerMenu =
	//makeMenu( 
	//    ['Billing Questions', '/largebusiness/contactus/gp_form.html'],
	//    ['Report a Problem', '/largebusiness/contactus/gp_form.html'],
	//    ['Contact Us', '/largebusiness/contactus/gp_form.html'],
	//    ['Online Service Center', '/largebusiness/customerservice/onlineservicecenter'],
	//    ['Contact Federal Services', '/largebusiness/industries/federal_govt/fed_contact.html']
	//)
	//menus.lbCustomerMenu.url = '/largebusiness/customerService/index.html'  
}
// -->
