// 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', 'default.htm' ],
	['Practices', 'methods.htm'],
	['Services', 'services.htm'],

	['Information', null, null,
		['About', 'about.htm'],
		['Green Home', 'greenlife.htm'],
		['F.A.Q.', 'faq.htm'],
		['Our Clients Says', 'testimonials.htm']
	],

	['Payments', null, null,
		['About Prices', 'prices.htm'],
		['Quote', 'online_quote.aspx?preset=false'],
		['Booking', 'online_booking.aspx?preset=false'],
		['Payment', 'online_payment.htm'],
		['Gift Certificate', 'gift_certificate.htm']
	],

	['Contact', 'contact.htm']

];

