// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	
	
	
	['Home', 'index.htm', null,],
	
	
	
['Products', null, null,
		// this is how item scope settings are defined
		
		
		['Geophone Harnesses', 'Geophone_Harnesses.htm'],
		['Geophone & Takeout Connectors', 'Connectors_Geophone.htm'],
		
		
		
		
		['Other System Connectors', 'Connectors_System.htm'],
		['Scorpion Panel Mount Connectors', 'Connectors_Scorpion.htm'],
		
		['Geophone Leader Cables', 'Cable_Geophone.htm'],
		
		['Other Speciality Cables', 'Cable_Speciality.htm'],
		
		['System Cables', 'Cable_System.htm'],
		['Geophone Accessories', 'Misc_GeophoneCase.htm'],
		
		['Battery Charger', 'Misc_BatteryCharger.htm'],
		
		
		
		
		
		
		
	],
	['Query', 'Query.htm', null,],
	
['Contact Us', 'ContactUs.htm', null,],
	
	
		// this is how item scope settings are defined
	// this is how multiple item scope settings are defined
			
	
	
	
	
	
	
	
	
];

