/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_ITEMS = [
	['Home', 'home.html', null,

	],
	['Tutorials', null, null,
		['The IDE', null, null,
			['Introduction', 'introducing_visual_basic.html'],
			['IDE Features', 'ide_features.html'],
			['The Toolbar', 'ide_toolbar.html'],
			['Project Explorer', 'ide_project_explorer.html'],
			['Properties Window', 'ide_properties_window.html'],
			['Form Layout', 'ide_form_layout.html'],
			['The Toolbox', 'ide_toolbox.html'],
			['Form Designer', 'ide_form_designer.html'],
			['The VB Editor', 'ide_vb_editor.html'],
		],
		['Working with Forms', null, null,
			['Anatomy', 'forms_anatomy.html'],
			['Properties', 'forms_properties.html'],
			['Events', 'forms_events.html'],
			['Methods', 'forms_methods.html'],
		],
		['Modules and Classes', null, null,
			['Introduction', 'modclass_introduction.html'],
			['Creating Code Library', 'modclass_library.html'],
			['Creating Code Modules', 'modclass_module.html'],
			//['Working w/ Sub Procedures', null],
			//['Function Procedures', null],
			//['Passing Parameters', null],
			//['Private and Public', null],
			['Class Modules', 'modclass_class.html'],
		],
		['Menus and Toolbars', null, null,
			['Menu Object', 'menus_object.html'],
			['Menu Properties', null],
			['Creating a Menu', null],
			['Creating Toolbars', null],
			['Toolbar Buttons', null],
			['Toolbar Images', null],
		],
		['Data Types', null, null,
			['Variable Types', null],
			['Using Integers', null],
			['Boolean Variables', null],
			['Static Statement', null],
			['Using Arrays', null],
			['Dynamic Arrays', null],
			['Using Constants', null],
		],
		['Using ActiveX', null, null,
			['Active Platform', null],
			['Role of ActiveX', null],
			['Software Development', null],
			['ActiveX Documents', null],
			['ActiveX Controls', null],
			['ActiveX DLLs', null],
			['Automate MS Word', null],
		],
		['Using DLLs and API', null, null,
			['Intro to DLLs', null],
			['Calling Conventions', null],
			['The API Viewer', null],
			['Using API', null],
		],
	],
	['Services', null, null,
		['Webhosting', 'services_webhosting.html'],
		['Personalized Email', 'services_pe-email.html'],
		['Domain Registration', null],
		['Web Development', 'services_webdev.html'],
	],
	['Our Network', 'our_network.html', null,
	],
	['Contact Us', 'contact_us.html', null,
	],
	['About Us', 'about_us.html', null,
	],
];


