// 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', {'sb' : 'Home'}],
	['Services', '', {'sb' : 'Services'},
		['Residential Cleaning', 'residentialcleaning.php', {'sb' : 'Residential Cleaning'}],
		['Commercial Cleaning', 'commercialcleaning.php', {'sb' : 'Commercial Cleaning'}],
		['Window Cleaning', 'windowcleaning.php', {'sb' : 'Window Cleaning'}],
		['Power Washing', 'powerwashing.php', {'sb' : 'Power Washing'}],
		['After Construction Cleaning', 'afterconstructioncleaning.php', {'sb' : 'After Construction Cleaning'}],
		['Move In/Out Cleaning', 'moveincleaning.php', {'sb' : 'Move In/Out Cleaning'}],
		['Floor Care', 'floorcare.php', {'sb' : 'Floor Care'}],
		['Carpet & Upholstery Cleaning', 'carpetcleaning.php', {'sb' : 'Carpet & Upholstery Cleaning'}],
		['Emergency Flood & Water Damage', 'emergencywaterdamage.php', {'sb' : 'Emergency Flood & Water Damage'}],

	],
	['About', 'about.php', {'sb' : 'About'}],
	['Contact', 'contact.php', {'sb' : 'Contact'}],
	['Coupon', 'coupon.php', {'sb' : 'Coupon'}],

];

