// 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
// updated 28 Jan 10

var MENU_ITEMS = [

['Chandeliers', '/chandeliers-lp.asp', null,
        ['Glass Art', '/bin/category.asp?category=28'],
		['Murano', '/bin/category.asp?category=29'],
		['Art Deco', '/bin/category.asp?category=30'],
		['Sconce', '/bin/category.asp?category=27'],
],

['Wall Art', '/wallartglass-lp.asp', null,
		['Petite 12"', '/bin/category.asp?category=32'],
		['Classic 18"', '/bin/category.asp?category=33'],
		['Grande 21"', '/bin/category.asp?category=31'],
		['Artist Signed"', '/bin/category.asp?category=35'],
	],

['Vases', '/vases-lp.asp', null,
		['Under $100', '/bin/category.asp?category=13'],
		['$100 - $200', '/bin/category.asp?category=14'],
		['Over $200', '/bin/category.asp?category=36'],
	],
	
['Plates &amp; Bowls', '/platesbowls-lp.asp', null,
		['Plates', '/bin/category.asp?category=12'],
		['Bowls', '/bin/category.asp?category=11'],
	],
	
['Sculptures', '/sculptures-lp.asp', null,
		['Abstract', '/bin/category.asp?category=40'],
		['Human Form', '/bin/category.asp?category=41'],
	],
	
['Animals &amp; Nature', '/animalnature-lp.asp', 'spacer.jpg',
        ['Land', '/bin/category.asp?category=43'],
		['Marine', '/bin/category.asp?category=44'],
		['Birds &amp; Penguins', '/bin/category.asp?category=45'],
		['Other', '/bin/category.asp?category=46'],
],
	
['Garden Art', '/gardenart-lp.asp', null,
		['Orbs &amp; Gazing Balls', '/bin/category.asp?category=49'],
		['Reeds &amp; Spires', '/bin/category.asp?category=50'],
		['Sun Discs', '/bin/category.asp?category=51'],
		['Fountains', '/bin/category.asp?category=52'],
],

['Collectibles &amp; Gifts', '/collectibles-lp.asp', null,
		['Perfume Bottles', '/bin/category.asp?category=56'],
		['Paperweights', '/bin/category.asp?category=57'],
		['Wine Stoppers', '/bin/category.asp?category=58'],
		['Drink Sets', '/bin/category.asp?category=59'],
		['Other', '/bin/category.asp?category=60'],
],
];