var MENU_ITEMS_XP = [

        
        [wrap_root('Conference Info'), null, {'sw' : 120},
                                  [wrap_child ('Organizational Committee', ''), '/comm.html'],

                                  [wrap_parent('Sponsorship', ''), null, null,
                                                        [wrap_child('Organizing Sponsors', ''), '/organizational.html'],
                                                        [wrap_child('Institutional/Agency Sponsors', ''), '/institutional.html'],
														[wrap_child('Corporate Sponsors', ''), '/corporate.html'],
														[wrap_child('ICOP Donor Circle', ''), '/icop_donor.html'],
														[wrap_child('In-Kind Sponsors', ''), '/inkind.html']
                                  ],
								  
								   [wrap_child ('Plenary Sessions', ''), '/plenary.html'],
                               
        ],


	[wrap_root('Field Trips/Courses'), null, {'sw' : 140},
                                  [wrap_child('Short Courses', ''), '/courses.html'],
								  [wrap_child('Workshops', ''), '/workshops.html'],
                                  [wrap_child('Extended Field Trips', ''), '/fieldtrips.html'],
                                  [wrap_child('Local Field Trips', ''), '/fieldtrips_local.html'],
                                  [wrap_child('Companion Activities', ''), '/companion.html']
                                  ],
	
	[wrap_root('Authors'), '/instructions.html', {'sw' : 70, 'tt' : 'Authors'},

	],
	
	[wrap_root('Registration'), '/registration.html', {'sw' : 100, 'tt' : 'Registration'},

	],
	
	[wrap_root('Call For Exhibits'), '/exhibits.html', {'sw' : 110, 'tt' : 'Call For Exhibitors'},

	],

	[wrap_root('Hotel/Travel'), null, {'sw' : 100},
                                  [wrap_child('Visa Information', ''), '/visa_information.html'],
								  [wrap_child('Hotel, Airline & Local Information', ''), '/travel.html'],
        ],

 	[wrap_root('Help'), '/help.html', {'sw' : 50, 'tt' : 'Help'},

	],
	
	 [wrap_root('Home'), '/index.html', {'sw' : 70, 'tt' : 'Home'},

	],


];

function wrap_root (text) {
	return [
	'<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td width=100% align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table>',
	'<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td width=100% align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table>',
	'<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td width=100% align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table>'
	];
}

function wrap_parent (text,icon) {
	return [['<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td width=100%>&nbsp; ', text, '</td><td><img src=images/arr.gif width=4 height=7 align="middle" align=absmiddle hspace=3></td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td width=100%>&nbsp; ', text, '</td><td><img src=images/arr.gif width=4 height=7 align="middle" align=absmiddle hspace=3></td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td width=100%>&nbsp; ', text, '</td><td><img src=images/arr.gif width=4 height=7 align="middle" align=absmiddle hspace=3></td></tr></table>'].join('')
	];
}

function wrap_child (text,icon) {
	return [['<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td>&nbsp; ', text, '</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td width=100%>&nbsp; ', text, '</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100% height=20><tr><td width=100%>&nbsp; ', text, '</td></tr></table>'].join('')
	];
}

