// 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.php', null,
	],
	['Air Conditioning', 'airconditioning.php', null,
		['Air Conditioning', 'airconditioning.php'],
		['Services', 'ac-services.php'],
		['Schedule an Appointment', 'request.php'],
		['The Club Membership Advantage', 'the-club.php'],
		['Testimonials', 'testimonials-air.php'],
	],
	['Heating', 'heating.php', null,
		['Heating', 'heating.php'],
		['Services', 'heating-services.php'],
		['Schedule an Appointment', 'request.php'],
		['The Club Membership Advantage', 'the-club.php'],
		['Testimonials', 'testimonials.php'],
	],
		['Testimonials', 'testimonials.php', null,
	],
		['About Us', 'about.php', null,
		['About Us', 'about.php'],
		['Schedule an Appointment', 'request.php'],
		['Contact Us', 'contact.php'],
	],
];


