
var array_items=new Array();
// write your nav section items here, 
// using following format: [group_id], [member_id], [text displayed in the menu], [url of menu link]
// for group title item, leave [member_id] blank


pushin(array_items, new Array("about_vuzix", "", "About Vuzix", "index.html"));
pushin(array_items, new Array("management", "", "Management", "management.html"));
pushin(array_items, new Array("management", "directors", "Directors", "directors.html"));
pushin(array_items, new Array("news", "", "News", "../news/index.html"));
pushin(array_items, new Array("corporate_facts", "", "Corporate Facts", "corporate_facts.html"));

// Investors pages
pushin(array_items, new Array("investors", "", "Investor FAQs", "investors.html"));

pushin(array_items, new Array("stock_quote", "", "Stock Quote (VZX.V)", "stock_quote.html"));
pushin(array_items, new Array("stock_quote", "warrant_quote", "Warrant Quote (VZX.WT)", "warrant_quote.html"));
pushin(array_items, new Array("stock_quote", "otcbb_quote", "OTCBB Stock Quote", "otcbb_quote.html"));
pushin(array_items, new Array("stock_quote", "about_tsx", "About The TSX Venture Exchange", "about_tsx.html"));

pushin(array_items, new Array("company_financials_reports", "", "Company Financials and Reports", "company_financials_reports.html"));
pushin(array_items, new Array("company_financials_reports", "quarterly_reports", "Quarterly Reports", "company_financials_reports.html"));
pushin(array_items, new Array("company_financials_reports", "annual_reports", "Annual Reports", "annual_reports.html"));
pushin(array_items, new Array("company_financials_reports", "proxy_materials", "Proxy Materials", "proxy_materials.html"));
pushin(array_items, new Array("filings", "", "Filings", "filings.html"));
pushin(array_items, new Array("filings", "sedar_filings", "SEDAR Filings", "filings.html"));
pushin(array_items, new Array("filings", "sec_edgar_filings", "SEC / EDGAR Filings", "sec_edgar_filings.html"));
pushin(array_items, new Array("investor_resources", "", "Investor Resources", "investor_resources.html"));
pushin(array_items, new Array("investor_resources", "investor_presentations", "Investor Presentations", "investor_resources.html"));
pushin(array_items, new Array("investor_resources", "investor_profile", "Investor Profile", "investor_profile.html"));
pushin(array_items, new Array("events", "", "Events Calendar", "i_events.html"));
pushin(array_items, new Array("corporate_governance", "", "Corporate Governance", "corporate_governance.html"));
pushin(array_items, new Array("investor_info", "", "Investor Contact / Information", "investor_info.html"));
pushin(array_items, new Array("investor_info", "investor_contact", "Investor Contact", "investor_info.html"));
pushin(array_items, new Array("investor_info", "request_info", "Request for Information", "request_info.aspx"));


pushin(array_items, new Array("careers", "", "Careers", "careers.html"));
pushin(array_items, new Array("legal", "", "Legal", "legal.html"));
pushin(array_items, new Array("consumer", "", "Consumer Products", "../consumer/index.html"));



render_nav_section(array_items, this_section_id, this_group_id, this_member_id);


