// 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.html'],
['ABOUT US', 'aboutus.html'],
['MEMBERS GALLERY', null, null,
  ['Basketry', 'basketry_artists.html'],
  ['Beadwork', 'beadwork_artists.html'],
  ['Clay', 'clay_artists.html'],
  ['Fiber', 'fiber_artists.html'],
  ['Glass', 'glass_artists.html'],
  ['Jewelry', 'jewelry_artists.html'],
  ['Mixed Media', 'mixed_media_artists.html'],
  ['Sculpture', 'sculpture_artists.html'],
  ['Wood', 'wood_artists.html']
],

['PUBLICATIONS', 'publications.html'],
['EVENTS', 'events.html'],
['LIVING TREASURES',
  'http://www.livingtreasuresproject.org/index.html', {'tw' : '_blank'}],
['HOW TO JOIN', 'how_to_join.html'],
['CONTACT', 'contact.html'],
['SITE MAP', 'sitemap.html'],
/*
['LINKS', 'links.html'],
['development', null, null,
  ['setAdmin', 'setAdmin.jsp'],
  ['unset', 'unsetAdmin.jsp'],
  ['ADMIN', 'admin/index.jsp']
]
*/

];
