/*
  --- 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.
*/
function openURL(URL) {
  win=window.open(URL);
}
var MENU_ITEMS = [
	['Conference', null, null,
		['Home', 'index.shtml'],
		['Call for papers', 'submit.shtml'],
		['Key dates', 'key_dates.shtml'],
		['Keynote speakers', 'key_speakers.shtml'],
/*		['Our sponsors', 'sponsors.shtml'], */
		['Info for sponsors', 'info_sponsors.shtml'],
/*		['Info for media', 'info_media.shtml'], */
	],
	['Program', null, null,
		['Abstract submissions', 'abstracts.shtml'],
		['Progam Info', 'program_info.shtml'],
		['Program >', null, null,
			['Day one - Monday', 'program_1.shtml'],
			['Day two - Tuesday', 'program_2.shtml'],
			['Day three - Wednesday', 'program_3.shtml'],
			['Day four - Thursday', 'program_4.shtml'],
			['Day five - Friday', 'program_5.shtml'],
		],
		['Poster >', null, null,
			['Display Area', 'poster_area_map.shtml'],
			['Day one - Monday', 'poster_1.shtml'],
			['Day two - Tuesday', 'poster_2.shtml'],
			['Day four - Thursday', 'poster_4.shtml'],
		], 
		['Social Functions', 'social_functions.shtml'],
/*		['Participants', 'participants.shtml'],
		['Info for presenters >', null, null,
			['Presenter guidelines', 'presenter_guidelines.shtml'],
			['Equipment provided', 'equipment.shtml'],

		], 
*/		['Green guidelines >', null, null,
			['Organisation & Planning', 'green_guidelines.shtml'],
			['Registration', 'green_registration.shtml'],
			['Program', 'green_program.shtml'],
			['Site Systems', 'green_site.shtml'],
			['Food Systems', 'green_food.shtml'],
		],
		['Carbon Offsetting', 'carbon_offsetting.shtml'],
	],
	['Registration', null, null,
		['Prices', 'fees.shtml'],
		['Accommodation', 'accommodation.shtml'],
		['Social Functions', 'social_functions.shtml'],
		['Conference Excursion', 'excursion.shtml'],
		['Catering', 'catering.shtml'],
		['Special Needs', 'special_needs.shtml'],
		['How to register', 'register.shtml'],
		['Enquiries', 'enquiries.shtml'],
		['On-site Desk Hours', 'desk_hours.shtml'],
	],
	['Venue', null, null,
		['Melb Exhibition Centre', "javascript:openURL('http://www.mcec.com.au')"],
		['How to get there', "javascript:openURL('http://www.mcec.com.au/Attend/Visitor-Info/Directions--Transport.html')"],
		['Venue map', 'venue_map.shtml'],
		['Venue information', "javascript:openURL('http://www.mcec.com.au/Attend.html')"],
		['Internet access', 'internet_access.shtml'],
		['About Melbourne', "javascript:openURL('http://www.melbourne.vic.gov.au/info.cfm?top=23&pg=966')"],
	],
	['About us', null, null,
		['Committees', 'committees.shtml'],
		['AMOS', "javascript:openURL('http://www.amos.org.au/aboutus')"],
		['AMS', "javascript:openURL('http://www.ametsoc.org/aboutams/index.html')"],
		['Latest news', 'news.shtml'],
		['Contacts', 'contacts.shtml'],
	],
];

