<!--
// 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.rOutProductsMenu =
		makeMenu( 
			['Long Distance', 
				makeMenu(
					['Calling Plans', 'http://www.qwest.com/residential/oor/products/callingplans/index.html'],
					['Qwest Calling Card', 'http://pcat.qwest.com/pcat/productDetail.do?offerId=6634&salesChannel=res'],
					['Home 800', 'http://pcat.qwest.com/pcat/productDetail.do?offerId=6619&salesChannel=res'],
					['Earn with E-ferral', 'http://pcat.qwest.com/pcat/productDetail.do?offerId=6664&salesChannel=res']
				)
			],     
			['Special Offers', 'http://www.qwest.com/residential/oor/products/specialoffers.html'],
			['Search', 
				makeMenu(
					['By Product Name', 'http://www.qwest.com/residential/oor/products/prodSearch.html'],
					['A-Z Product Index', 'http://pcat.qwest.com/pcat/productList.do?salesChannel=res']
				)
			]
		)
	menus.rOutProductsMenu.url = 'http://pcat.qwest.com/pcat/productsAndServices.do?salesChannel=Residential'

	menus.rOutOrderMenu =
		makeMenu( 
			['Establish New Service', 'http://www.qwest.com/residential/oor/products/callingplans/index.html'],
			['Add Products \&amp\; Services', 'https://residential.qwest.com/account/update_products.jsp']
		)
	menus.rOutOrderMenu.url = 'http://pcat.qwest.com/pcat/orderOnline.do?salesChannel=Residential'

	menus.rOutManageMenu =
		makeMenu( 
			['Change Login Preferences', 'https://residential.qwest.com/qwestpass/qpass_register.jsp'], 
			['Update Account Profile', 'https://residential.qwest.com/account/profile.jsp'],
			['View Current Call Detail', 'https://residential.qwest.com/account/detail.jsp'],
			['View eBill', 'https://residential.qwest.com/account/ebill.jsp'],
			['Pay Bill', 'https://residential.qwest.com/account/one_time_cc_payment.jsp'],
			['Set Up Payment Options', 'https://residential.qwest.com/account/update_billing.jsp']
		)
	menus.rOutManageMenu.url = 'https://residential.qwest.com/account/menu.jsp'

	menus.rOutCustomerMenu =
		makeMenu( 
			['FAQs', 'http://www3.qwest.com/cgi-bin/resoor.cfg/php/enduser/std_alp.php'], 
			['Report Phone Problem', 'https://kai08.qwest.com/cwt/repair/login.aspx'],
			['Contact Us', 'http://www.qwest.com/residential/oor/customerService/contactus/billing.html']
		)
	menus.rOutCustomerMenu.url = 'http://pcat.qwest.com/pcat/customerService.do?salesChannel=Residential'
}
// -->