
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("taceye_products", "", "Tac-Eye Products", "taceye_products.html"));
pushin(array_items, new Array("taceye_products", "lt", "Tac-Eye LT", "taceye_products_lt.html"));
pushin(array_items, new Array("taceye_products", "binocular", "Tac-Eye Binocular", "taceye_products_binocular.html"));
pushin(array_items, new Array("taceye_products", "handheld_viewer", "Tac-Eye Handheld Viewer", "taceye_products_handheld_viewer.html"));
pushin(array_items, new Array("taceye_products", "downloads", "Downloads", "taceye_products_downloads.html"));

pushin(array_items, new Array("commercial_industrial_applications", "", "Commercial / Industrial Applications", "commercial_industrial_applications.html"));

pushin(array_items, new Array("custom_solutions", "", "Custom Solutions", "custom_solutions.html"));

pushin(array_items, new Array("nextgen_systems", "", "NextGen Systems", "nextgen_systems.html"));
pushin(array_items, new Array("nextgen_systems", "wearable_computing", "Wearable Computing", "nextgen_systems.html"));
pushin(array_items, new Array("nextgen_systems", "battlefield_air_operations_kit", "Battlefield Air Operations Kit", "nextgen_systems_battlefield_air_operations_kit.html"));
pushin(array_items, new Array("nextgen_systems", "future_force_warrior", "Future Force Warrior", "nextgen_systems_future_force_warrior.html"));
pushin(array_items, new Array("events", "", "Events", "events.html"));

render_nav_section(array_items, this_section_id, this_group_id, this_member_id);


