<?
// include/menu.php  -  generate the menu

$this_page = basename ($SCRIPT_NAME);
$menu = array ( 'Home'		=>  'index.php',
		'Introduction'	=>  'vcc_intro.php',
		'Creating your own workspace' => 'vcc_workspace.php',
		'Creating a behaviour' => 'vcc_behaviour.php',
		'Adding code to a behaviour' => 'vcc_code.php',
		'Running a simulation' => 'vcc_run.php',
		'Re-using a behaviour' => 'vcc_symbol.php',
		'VCC datatypes' => 'vcc_datatypes.php',
	        'Common error messages' => 'error_messages.php');
while (list($menu_key, $menu_value) = each ($menu)) {
	if ($menu_value == $this_page) {
		?>  <li class="thispage"><? print $menu_key ?></li>
		<?
	} else {
		?>  <li><a href="<? print $menu_value ?><? if ($style) { print "?style=$style"; } ?>"><? print $menu_key ?></a></li>
		<?
	}
}
?>

