// 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 = [
	['Air Conditioning', 'airconditioning.php', null,
		['Air Conditioning', 'airconditioning.php'],
		['Services', 'services.php'],
		['Products we carry', 'ac_lines.php'],
		['Schedule an appointment', 'appointment.php'],
		['Planned maintenance agreements', 'maintenance.php'],
		['Testimonials', 'testimonials.php'],
		['Credentials', 'credentials.php'],
		['Links', 'links.php']
	],
	['Heating', 'heating.php', null,
		['Heating', 'heating.php'],
		['Services', 'services.php'],
		['Products we carry', 'heating_lines.php'],
		['Schedule an appointment', 'appointment.php'],
		['Planned maintenance agreements', 'maintenance.php'],
		['Testimonials', 'testimonials.php'],
		['Credentials', 'credentials.php'],
		['Links', 'links.php']
	],
		['Plumbing', 'plumbing.php', null,
		['Plumbing', 'plumbing.php'],
		['Services', 'services.php'],
		['Products we carry', 'plumbing_lines.php'],
		['Schedule an appointment', 'appointment.php'],
		['Planned maintenance agreements', 'maintenance.php'],
		['Testimonials', 'testimonials.php'],
		['Credentials', 'credentials.php'],
		['Links', 'links.php']
	],
		['Commercial', 'commercial.php', null,
		['Commercial', 'commercial.php'],
		['Products We Carry', 'commercial_lines.php'],
		['Commercial Services', 'commercial_services.php'],
		['Services', 'services.php'],
		['Testimonials', 'comm_testimonials.php'],
		['Credentials', 'credentials.php'],
	],
		['About / Contact', 'about.php', null,
		['About Us', 'about.php'],
		['Meet the heroes', 'meet_us.php'],
		['Services', 'services.php'],
		['Schedule an appointment', 'appointment.php'],
		['Testimonials', 'testimonials.php'],
		['Credentials', 'credentials.php'],
		['Job opportunities', 'careers.php'],
		['Links', 'links.php'],
		['Contact', 'contact.php']
	],
		['Links', 'link.php', null,
	],
];

