// 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 Page', 'default.htm'],
		
		['About The Show', null, null,
			['HR Sector','HR_sector.html'],
			['About NCE','about_show.html'],
			['Previous show','pre_show.html'],
			['Show Gallery','show_images.html'],
			['Show Facts','show_fact.html'],
			
			],
		
		['Exhibitor Info', null, null,
			['Exhibitor Profile','Ex_profile.html'],
			['Stand Booking','standbooking.html'],
			['Exhibitor Services','Ex_service.html'],
			
		],
			
		['Visitor Info', null, null,
			['Visitor Profile','Visitor_profile.html'],
			['Visitor Registration','visitor_reg.html'],
			['Venue & Map','venue.html'],
			['Exhibitor Profile','Ex_profile.html'],
		],
		
		['Show News', null, null,
			['Press Releases','Press_Release.asp'],
			['Press Registration','Press_register.html'],
		],
			
		['Event Organizer', null, null,
			['EXPO CENTRE SHARJAH','venue.html'],
			['Event Calendar','http://www.expo-centre.ae/en/eventcalendar.asp', {'tw':'_blank'}],
			['Supporters & Partners','Supporters.html'],
			['Contact Us', 'Contactus.html'],
		],


];
