// menu_items.js file
// comments block here




var MENU_ITEMS =[
	[[	wrap_parent('home_home.gif'), 
		wrap_parent('home_home_o.gif'), 
		wrap_parent('home_home_o.gif')
		], ['index.asp', '_top', null], [null, null, 60],
	],
	[[	wrap_parent('home_research.gif'),
		wrap_parent('home_research_o.gif'),
		wrap_parent('home_research_o.gif')
		], ['research.asp', '_top', null], [59, null, 80],
			[[	wrap_child('&nbsp;Aquaculture'),
				wrap_child_over('&nbsp;Aquaculture'),
				wrap_child_over('&nbsp;Aquaculture')
				], ['research_nutrition.asp', '_top', null], [null, null, 238]],
			[[	wrap_child('&nbsp;Fisheries & Ecology'),
				wrap_child_over('&nbsp;Fisheries & Ecology'),
				wrap_child_over('&nbsp;Fisheries & Ecology')
				], ['research_fande.asp', '_top', null], [null, null, 238]],
			[[	wrap_child('&nbsp;Physiology & Neuroendocrinology'),
				wrap_child_over('&nbsp;Physiology & Neuroendocrinology'),
				wrap_child_over('&nbsp;Physiology & Neuroendocrinology')
				], ['research_physiology.asp', '_top', null], [null, null, 238]],
			[[	wrap_child('&nbsp;Ornamentals'),
				wrap_child_over('&nbsp;Ornamentals'),
				wrap_child_over('&nbsp;Ornamentals')
				], ['research_ornamentals.asp', '_top', null], [null, null, 238]],
			[[	wrap_child('&nbsp;Facilities'),
				wrap_child_over('&nbsp;Facilities'),
				wrap_child_over('&nbsp;Facilities')
				], ['research_facilities.asp', '_top', null], [null, null, 238]]
	],
	[[	wrap_parent('home_people.gif'),
		wrap_parent('home_people_o.gif'),
		wrap_parent('home_people_o.gif')
		], ['people.asp', '_top', null], [79, null, 65],
			[[	wrap_child('&nbsp;Dr. Joan Holt'),
				wrap_child_over('&nbsp;Dr. Joan Holt'),
				wrap_child_over('&nbsp;Dr. Joan Holt')
				], ['people_holtg.asp', '_top', null], [null, null, 150]],
			[[	wrap_child('&nbsp;Scott Holt'),
				wrap_child_over('&nbsp;Scott Holt'),
				wrap_child_over('&nbsp;Scott Holt')
				], ['people_holts.asp', '_top', null], [null, null, 150]],
			[[	wrap_child('&nbsp;Research Associates'),
				wrap_child_over('&nbsp;Research Associates'),
				wrap_child_over('&nbsp;Research Associates')
				], ['people_associates.asp', '_top', null], [null, null, 150]],
			[[	wrap_child('&nbsp;Graduate Students'),
				wrap_child_over('&nbsp;Graduate Students'),
				wrap_child_over('&nbsp;Graduate Students')
				], ['people_associates.asp#students', '_top', null], [null, null, 150]],				
			[[	wrap_child('&nbsp;Support Staff'),
				wrap_child_over('&nbsp;Support Staff'),
				wrap_child_over('&nbsp;Support Staff')
				], ['people_associates.asp#support', '_top', null], [null, null, 150]]
	],
	[[	wrap_parent('home_pubs.gif'),
		wrap_parent('home_pubs_o.gif'),
		wrap_parent('home_pubs_o.gif')
		], ['pubs.asp?frompage=default', '_top', null], [64, null, 53],
			[[	wrap_child('&nbsp;Dr. Joan Holt'),
				wrap_child_over('&nbsp;Dr. Joan Holt'),
				wrap_child_over('&nbsp;Dr. Joan Holt')
				], ['pubs.asp?frompage=holtg&sidenavid=holtg', '_top', null], [null, null, 150]],
			[[	wrap_child('&nbsp;Scott Holt'),
				wrap_child_over('&nbsp;Scott Holt'),
				wrap_child_over('&nbsp;Scott Holt')
				], ['pubs.asp?frompage=holts&sidenavid=holts', '_top', null], [null, null, 150]]				
	],
	[[	wrap_parent('home_partners.gif'),
		wrap_parent('home_partners_o.gif'),
		wrap_parent('home_partners_o.gif')
		], ['partners.asp', '_top', null], [52, null, 75],
	],
	[[	wrap_parent('home_news.gif'),
		wrap_parent('home_news_o.gif'),
		wrap_parent('home_news_o.gif')
		], ['news.asp', '_top', null], [74, null, 59],		
	], 
	[[	wrap_parent('home_contact.gif'),
		wrap_parent('home_contact_o.gif'),
		wrap_parent('home_contact_o.gif')
		], ['contact.asp', '_top', null], [58, null, 72],		
	],
];

function wrap_parent (menuicon) {
	return '<table cellpadding="0" cellspacing="0" border="0" height="36" align="right" valign="top" vspace=0" hspace=0"><tr>' + (menuicon != null ? '<td><img src="images/'  + menuicon + '" height="36" border="0"></td>' : '') + '</tr></table>';
}

function wrap_child (text, subicon) {
 	return '<table cellpadding="0" cellspacing="0" border="0" width="100%" align="left"><tr><td width="100%"><font color="#333399"><span style="font-size: 11px; font-weight:bold">' + text + '</span></font></td>' + (subicon != null ? '<td><img src="images/' + subicon + '" width="12" height="12" border="0"></td>' : '') + '</tr></table>';
}

function wrap_child_over (text, subicon) {
 	return '<table cellpadding="0" cellspacing="0" border="0" width="100%" align="left"><tr><td width="100%"><font color="#FFFFFF"><span style="font-size: 11px; font-weight:bold">' + text + '</span></font></td>' + (subicon != null ? '<td><img src="images/' + subicon + '" width="12" height="12" border="0"></td>' : '') + '</tr></table>';
}	
	
