// menu_items.js file
// comments block here




var MENU_ITEMS =[
	[[	wrap_parent('home_about.gif'), 
		wrap_parent('home_about_o.gif'), 
		wrap_parent('home_about_o.gif')
		], ['about.asp', '_top', null], [null, null, 76],
			[[	wrap_child('&nbsp;Goals &amp; Themes'),
				wrap_child_over('&nbsp;Goals &amp; Themes'),
				wrap_child_over('&nbsp;Goals &amp; Themes')
				], ['about_goals.asp', '_top', null], [null, null, 120]],
			[[	wrap_child('&nbsp;People'),
				wrap_child_over('&nbsp;People'),
				wrap_child_over('&nbsp;People')
				], ['about_people.asp', '_top', null], [null, null, 120]],
			[[	wrap_child('&nbsp;Partners'),
				wrap_child_over('&nbsp;Partners'),
				wrap_child_over('&nbsp;Partners')
				], ['about_partners.asp', '_top', null], [null, null, 120]]
	],
	[[	wrap_parent('home_activities.gif'),
		wrap_parent('home_activities_o.gif'),
		wrap_parent('home_activities_o.gif')
		], ['activities.asp', '_top', null], [75, null, 77],
			[[	wrap_child('&nbsp;Lessons'),
				wrap_child_over('&nbsp;Lessons'),
				wrap_child_over('&nbsp;Lessons')
				], ['activities_lessons.asp', '_top', null], [null, null, 165]],
			[[	wrap_child('&nbsp;Field Activities & Trips'),
				wrap_child_over('&nbsp;Field Activities & Trips'),
				wrap_child_over('&nbsp;Field Activities & Trips')
				], ['activities_field.asp', '_top', null], [null, null, 165]],
			[[	wrap_child('&nbsp;Workshops'),
				wrap_child_over('&nbsp;Workshops'),
				wrap_child_over('&nbsp;Workshops')
				], ['activities_workshops.asp', '_top', null], [null, null, 165]],
			[[	wrap_child('&nbsp;Courses &amp; Lectures'),
				wrap_child_over('&nbsp;Courses &amp; Lectures'),
				wrap_child_over('&nbsp;Courses &amp; Lectures')
				], ['activities_courses.asp', '_top', null], [null, null, 165]]
	],
	[[	wrap_parent('home_news.gif'),
		wrap_parent('home_news_o.gif'),
		wrap_parent('home_news_o.gif')
		], ['news.asp', '_top', null], [76, null, 111],
	],
	[[	wrap_parent('home_resources.gif'),
		wrap_parent('home_resources_o.gif'),
		wrap_parent('home_resources_o.gif')
		], ['resources.asp', '_top', null], [110, null, 86],
			[[	wrap_child('&nbsp;Lessons'),
				wrap_child_over('&nbsp;Lessons'),
				wrap_child_over('&nbsp;Lessons')
				], ['activities_lessons.asp', '_top', null], [null, null, 150]],
			[[	wrap_child('&nbsp;Applications'),
				wrap_child_over('&nbsp;Applications'),
				wrap_child_over('&nbsp;Applications')
				], ['', '_top', null], [null, null, 150],
					[[	wrap_child('&nbsp;Teachers'),
						wrap_child_over('&nbsp;Teachers'),
						wrap_child_over('&nbsp;Teachers')
						], ['pdf/application_teacher.pdf', '_blank', null], [null, null, 125]],
					[[	wrap_child('&nbsp;Fellows'),
						wrap_child_over('&nbsp;Fellows'),
						wrap_child_over('&nbsp;Fellows')
						], ['pdf/application_fellow.pdf', '_blank', null], [null, null, 125]]
			],
			[[	wrap_child('&nbsp;Forms &amp; Reports'),
				wrap_child_over('&nbsp;Forms &amp; Reports'),
				wrap_child_over('&nbsp;Forms &amp; Reports')
				], ['resources.asp', '_top', null], [null, null, 150]],
			[[	wrap_child('&nbsp;Facilities'),
				wrap_child_over('&nbsp;Facilities'),
				wrap_child_over('&nbsp;Facilities')
				], ['resources_facilities.asp', '_top', null], [null, null, 150]]				
	],
	[[	wrap_parent('home_contact.gif'),
		wrap_parent('home_contact_o.gif'),
		wrap_parent('home_contact_o.gif')
		], ['contact.asp', '_top', null], [85, null, 91],		
	], 
];

function wrap_parent (menuicon) {
	return '<table cellpadding="0" cellspacing="0" border="0" height="20" align="right" valign="top" vspace=0" hspace=0"><tr>' + (menuicon != null ? '<td><img src="images/'  + menuicon + '" height="20" 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>';
}	
	
