/*
  --- 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 = [
	['Customers', null, null,
	 ['Schedule', 'schedule/mycalendar.php?view=2'],
		['Search for a Customer', 'search_customers.php'],
		['View All Customers', 'view_customers.php'],
		['Outstanding Balances', 'outstanding_balances.php'],
		['Search Vehicles', 'search_vehicles.php'],
		['Search Quote/RO/Invoices', 'search_invoices.php'],
		['New Customer Form', 'javascript:window.open(\'customer_form.php\',\'print\',\'toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,location=no,width=800,height=800\') && void(0);'],
		['Add a Customer', 'new_customer.php'],
		['Customer Categories', null, null,
			['View All Categories', 'view_customercategories.php'],
			['Add a Category', 'customercategories.php'],
		],
	
	],
	['My Shop', null, null,
		//['Search for an Employee', 'search_employees.php'],
		['Edit My Account', 'my_account.php'],
		['Edit My Shop', 'my_location.php'],
		['View All Employees', 'view_employees.php'],
		['Add an Employee', 'employees.php'],
	],
	['Inventory', null, null,
		['View All Inventory Items', 'view_inventory.php'],
		['Add to Inventory', 'inventory.php'],
		['View All Saved Jobs', 'view_savedjobs.php'],
		['Add a Saved Job', 'savedjobs.php'],
	],
	['Reports', null, null,
		['KPIs', 'kpi.php'],
		['Tech Productivity', 'tech_productivity.php'],
		['Advisor Productivity', 'SA_productivity.php'],
		['Marketing', 'marketing_report.php'],
		['Taxes', 'taxes.php'],
		['Supplier History', 'supplier_history.php'],
	],
	['My Account', null, null,
		['My Hours', 'my_hours.php'],
		['Edit My Info', 'my_employee.php'],
		['Change Password', 'password.php'],
		
	],
	['Help', null, null,
		['Documentation', 'Turnwrench User Manual.pdf'],
		['Suggestions?', 'suggestions.php'],
		['Contact Us', 'contact.php'],
	],

	['Logout', 'login.php?logout=true'],

];

