// 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 = [
	['About the Artist', './artist.php'],

	['Portfolio', null, null,
		['Art Quilts', './portfolio.php?t=A'],
		['Baby Quilts', './portfolio.php?t=B'],
		['Lap Quilts', './portfolio.php?t=L'],
		['Bed Quilts', './portfolio.php?t=S']
	],
//	['Inventory', null, null,
//		['Art Quilts', './gallery.php?t=A'],
//		['Baby Quilts', './gallery.php?t=B'],
//		['Lap Quilts', './gallery.php?t=L'],
//		['Bed Quilts', './gallery.php?t=S'],
//		['Patterns', './gallery.php?t=P']
//	],
	['Events','./events.php'],
	['Contact', './contact.php']
//	['Shopping Cart', './cart.php']
];


