// 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?q=home'],
	['About Habitat',null,null,
		['About Us','index.php?q=about'],
		['Membership','index.php?q=membership'],
		['Chapter Meetings','index.php?q=meetings'],
		['Honors Credit','index.php?q=honors']
	],
	['Contact Information','index.php?q=contact'],
	['Membership', 'index.php?q=membership'],
	['Meetings',null,null,
		['Meeting Schedule','index.php?q=meetings'],
		['Minutes Archive','index.php?q=minutes'],
	],
	['Photo Gallery','index.php?q=photos'],
	['Calendar','index.php?q=calendar'],
	['Links',null,null,
		['Greater Bham HFH','http://www.habitatbham.org/',{'tw' : 'blank'}],
		['Habitat Intl','http://www.habitat.org/', {'tw' : 'blank'}]
	]
]
