//Copyright (c) 2000 direction inc. All rights reserved.

//header_ie.js 	// 1.0 2000/01/30

//Please refer to the file "www.directionsolutions/legal.html" for further important copyright and licensing information.

var allowMenu = 1;
var headerTop = 83;

var Menus = new Menubar();

var company = new Menu( 'Company', 123, 68, 83 );
company.addMenuItem('Profile','/main/company/profile.html;NOSSL' );
company.addMenuItem('Policies', '/main/company/policies.html;NOSSL' );
company.addMenuItem('Warranty', '/main/company/warranty.html;NOSSL' );
company.addMenuItem('News', '/main/company/news.html;NOSSL' );
company.addMenuItem('Contact', '/main/company/contact.html;NOSSL' );

Menus.add( company );

var account = new Menu( 'Account', 198, 68, 83);
account.addMenuItem( 'Overview', '/main/account/overview.html;NOSSL' );
account.addMenuItem( 'Login&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', '/main/account/login.html' );
account.addMenuItem( "Logout&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "/main/account/logout.html;NOSSL" );
account.addMenuItem( 'Profile&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', '/main/account/user_profile.html;SSL' );
account.addMenuItem( 'Login App', '/main/account/login_app.html;NOSSL' );
account.addMenuItem( 'Credit App&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', '/main/account/credit_app.html;NOSSL' );
if ( userType && userType == "E" || userType == "A" ) {
    account.addMenuItem( "Select Customer", "/main/account/select_customer.html;NOSSL" );
} // end if

Menus.add( account );

var products = new Menu ( 'Products', 266, 68, 83 );
products.addMenuItem( 'Search', '/main/products/search.html;NOSSL' );
products.addMenuItem( 'Promotion', '/main/products/promotion.html;NOSSL' );
products.addMenuItem( 'Customizing', '/main/products/customizing.html;NOSSL' );
products.addMenuItem( 'Discontinued', '/main/products/discontinued.html;NOSSL' );
products.addMenuItem( 'View Cart', '/main/products/view_cart.html;NOSSL' );

Menus.add( products );

var applications = new Menu( 'Applications', 339, 68, 91);
applications.addMenuItem( 'Retail','/main/applications/retail.html;NOSSL' );
applications.addMenuItem( 'Financial','/main/applications/financial.html;NOSSL' );
applications.addMenuItem( 'Healthcare','http://www.addressograph.com;NOSSL' );
applications.addMenuItem( 'Hospitality','/main/applications/hospitality.html;NOSSL' );
applications.addMenuItem( 'Mobile','/main/applications/mobile.html;NOSSL' );
applications.addMenuItem( 'Petroleum','/main/applications/petroleum.html;NOSSL' );
applications.addMenuItem( 'Travel','/main/applications/travel.html;NOSSL' );
applications.addMenuItem( 'Custom','/main/applications/custom.html;NOSSL' );
applications.addMenuItem( 'Chargebacks','/main/applications/chargebacks.html;NOSSL' );

Menus.add( applications );

var orders = new Menu( 'Orders', 433, 68, 83 );
orders.addMenuItem( "Overview", "/main/order/overview.html;NOSSL" );
orders.addMenuItem( "Current", "/main/order/details.html;NOSSL" );
orders.addMenuItem( "History", "/main/order/history.html;NOSSL" );

Menus.add( orders );

var quotes = new Menu( 'Quotes', 486, 68, 83 );
quotes.addMenuItem( "Overview", "/main/quote/overview.html;NOSSL" );
quotes.addMenuItem( "Current", "/main/quote/details.html;NOSSL" );
quotes.addMenuItem( "History", "/main/quote/history.html;NOSSL" );

Menus.add( quotes );

var support = new Menu( 'Support', 565, 68, 100 );
support.addMenuItem( "Customer Support", "/main/support/customer_support.html" );
support.addMenuItem( "Help Desk", "/main/support/help_desk.html;NOSSL" );
support.addMenuItem( "Returns", "/main/support/returns.html;NOSSL" );
support.addMenuItem( "Site Search", "/main/search/site.html;NOSSL" );
support.addMenuItem( "Site Map", "/main/search/sitemap.html;NOSSL" );
//support.addMenuItem( "Troubleshooting", "/main/support/troubleshooting.html;NOSSL" );
//support.addMenuItem( "Q & A", "/main/support/questions_answers.html" );



Menus.add( support );
