/*
This is the code for Historic Bridges of Michigan and Elsewhere
QuickMenu Bridge Browser System. Its purpose is to allow users
quick access to bridge lists without having to go back to the main page
all the time. This tiny little js file helps to ensure that this website
remains set on course to take over the world! Just kidding...
*/

/*
   menu items  
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/




var MENU_ITEMS = [
	['County', null, null,
	['Michigan "A-K" -', null, null,
		['Alger', 'b_c_mi_alger.htm'],
		['Allegan', 'b_c_mi_allegan.htm'],
		['Barry', 'b_c_mi_barry.htm'],
		['Calhoun', 'b_c_mi_calhoun.htm'],
		['Cheboygan', 'b_c_mi_cheboygan.htm'],
		['Chippewa', 'b_c_mi_chippewa.htm'],
		['Clinton', 'b_c_mi_clinton.htm'],
		['Eaton', 'b_c_mi_eaton.htm'],
		['Emmet', 'b_c_mi_emmet.htm'],
		['Genesee', 'b_c_mi_genesee.htm'],
		['Hillsdale', 'b_c_mi_hillsdale.htm'],
		['Huron', 'b_c_mi_huron.htm'],
		['Ingham', 'b_c_mi_ingham.htm'],
		['Ionia', 'b_c_mi_ionia.htm'],
		['Iosco', 'b_c_mi_iosco.htm'],
		['Kent', 'b_c_mi_kent.htm'],

	],
	['Michigan "L-Z" -', null, null,
		['Lapeer', 'b_c_mi_lapeer.htm'],
		['Lanawee', 'b_c_mi_lenawee.htm'],
		['Livingston', 'b_c_mi_livingston.htm'],
		['Mackinac', 'b_c_mi_mackinac.htm'],
		['Macomb', 'b_c_mi_macomb.htm'],
		['Marquette', 'b_c_mi_marquette.htm'],
		['Midland', 'b_c_mi_midland.htm'],
		['Monroe', 'b_c_mi_monroe.htm'],
		['Montmorency', 'b_c_mi_montmorency.htm'],
		['Saginaw', 'b_c_mi_saginaw.htm'],
		['St. Clair', 'b_c_mi_stclair.htm'],
		['St. Joseph', 'b_c_mi_stjoseph.htm'],
		['Sanilac', 'b_c_mi_sanilac.htm'],
		['Shiawassee', 'b_c_mi_shiawassee.htm'],
		['Tuscola', 'b_c_mi_tuscola.htm'],
		['Washtenaw', 'b_c_mi_washtenaw.htm'],
		['Wayne', 'b_c_mi_wayne.htm']
	],
	['Ontario -', null, null,
		['Bruce', 'b_c_on_bruce.htm'],
		['Haldimand', 'b_c_on_haldimand.htm'],
		['Kent', 'b_c_on_kent.htm'],
		['Lambton', 'b_c_on_lambton.htm'],
		['Middlesex', 'b_c_on_middlesex.htm'],
		['Niagara', 'b_c_on_niagara.htm']
	],
	['Indiana -', null, null,
		['Elkhart', 'b_c_in_elkhart.htm'],
	],
	['New York -', null, null,
		['Niagara', 'b_c_ny_niagara.htm']
	],
	['Ohio -', null, null,
		['Fulton', 'b_c_oh_fulton.htm'],
	],
	['Pennsylvania -', null, null,
		['Allegheny', 'b_c_pa_allegheny.htm'],
		['Clarion', 'b_c_pa_clarion.htm'],
		['Crawford', 'b_c_pa_crawford.htm'],
		['Elk', 'b_c_pa_elk.htm'],
		['Erie', 'b_c_pa_erie.htm'],
		['Forest', 'b_c_pa_forest.htm'],
		['Mercer', 'b_c_pa_mercer.htm'],
		['Venango', 'b_c_pa_venango.htm'],
		['Warren', 'b_c_pa_warren.htm']	],
],
	['State', null, null,
		['Michigan', 'b_s_mich.htm'],
		['Ontario', 'b_s_ont.htm'],
		['Indiana', 'b_s_ind.htm'],
		['New York', 'b_s_ny.htm'],
		['Ohio', 'b_s_ohio.htm'],
		['Pennsylvania', 'b_s_penn.htm']
	],
	['Type', null, null,
		['Metal Truss', 'b_t_truss.htm'],
		['Arch', 'b_t_arch.htm'],
		['Beam', 'b_t_beam.htm'],
		['Concrete', 'b_t_concrete.htm'],
		['Others', 'b_t_others.htm'],
		['Plate Girder', 'b_t_pgirder.htm'],
		['Concrete Camelback', 'b_t_camelback.htm'],
		['All Other Types', 'b_t_others.htm'],

	],
	['Full Lists', null, null,
		['County Menu', 'b_s_county.htm'],
		['All Railroad', 'b_t_rail.htm'],
		['All Movable', 'b_t_move.htm'],
		['All Bridges', 'b_all.htm']
	],
	['Other Features', null, null,
		['Home Page', 'index.htm'],
		['MI Bridge Inventory', 'info/inventory95/index.htm'],
		['Encyclopedia', 'info/articles.htm'],
		['Contact Me', 'contact/index.htm'],
		['About This Site', 'info/about.htm']
	],
];

