// 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'],
	
	['SHOW INFO',null, null,
		 
		['PREVIOUS EDITION', 'pre_show.html'],
		['SHOW DETAILS', 'show_details.html'],
		['SHOW PROFILE', 'show_profile.html'],
		['ABOUT THE SHOW', 'about_show.html'],
	],

	['VISITOR INFO', null, null,
		['EXHIBITOR LIST 2011','exhi_list2011.asp'],
		['ONLINE REGISTRATION', 'visitor_reg.html'],	
		['ECONOMIC OFFICES', 'eco_office.html'],
		['FLOOR PLAN 2011', 'PDF/Floorplan.pdf', {'tw':'_blank'}],
		['LOCATION MAP', 'loaction.html'],
	],


	['TRAVEL INFO', null, null,
		['AIRPORT INFO', 'airport_info.html'],	
		['ACCOMMODATION', 'http://www.expo-centre.ae/en/hotels.asp', {'tw':'_blank'}],
	],


	['PRESS ROOM', null, null,
		['PRESS RELEASES', 'Press_Release.asp'],
		['PRESS REGISTRATION', 'Press_register.html'],
	],
	
	['ABOUT SHARJAH', 'http://www.expo-centre.ae/en/page.asp?pagecatid=6&pagescatid=19', {'tw':'_blank'}],
	
	
	['ORGANIZER', null, null,
		['EXPO CENTRE SHARJAH', 'http://www.expo-centre.ae/en/', {'tw':'_blank'}],
		['CONTACT US', 'Contactus.html'],
	],


];
