// 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 = [

	['Welcome', 'welcome.html', null,
		// this is how item scope settings are defined
	],
	['Services', 'services.html', null,
		['DVD Video Invitations', null, null,
		 
		 ['DVD Package Options', 'package_options.html'],
		 ['DVD Process', 'process.html'],
		 ['Sample Video Backgrounds', 'dvd_backgrounds.html'],
		 ['Music Samples', 'music_samples.html'],
		 ['Demo', 'demos.html']
		 
		 ],
		['Paper Invitations', 'paper_invitations.html'],

		['Video Montages', null, null,
		 
		 ['Under Construction...']
		],
		['All Services', 'services.html']
	],
	['Demo', 'demos.html'],
	['FAQ', 'faq.html'],
	['Contact', 'contact_us.html']
];

