//beware !! the last item should not be followed by a comma
var menuItems = [
	['Home', 'home.php'],
	['People', 'people.php'],
	['Publications', 'publication.php'],
	['Research', 'research.php'],
	['Conference Schedules', 'conference_schedule.php'],
	['Useful Links', 'useful_links.php'],
	['Contact', 'contact.php'],
	['Intranet', 'login.php']
];


function DisplayMenu(selectedMenuItem){
	document.write('<link rel=stylesheet type="text/css" href="includes/menu.css">');

	document.write('<table cellpadding="3" cellspacing="2" border="0"><tr>');

	for (i = 0; i < menuItems.length; i++){
		document.write(
			'<td nowrap><a href="' +
			menuItems[i][1] +
			'"	class="' +
			( ( selectedMenuItem == menuItems[i][0] ) ? 'MenuButtonSelected' :  'MenuButton' ) +
			'">' +
			menuItems[i][0] +
			'</a></td>'
		);
	}
	
	
	

	document.write('</tr></table>');
}
