<!-- //

function addMenuItem(name, alink, header)
{
	document.write('    <tr> ');
	document.write('      <td width="100%" height="18" class="Menutrails" onMouseOver="MM_timelineStop(\'MENUOFF\')" onMouseOut="MM_timelinePlay(\'MENUOFF\');MM_timelineGoto(\'MENUOFF\',\'1\')"> ');
	if (header)
	{
		document.write('        <a style="width:100%" href="'+alink+'"><strong>'+name+'</strong></a></td>');
	}
	else
	{
		document.write('		<a style="width:100%;text-indent: .5em;" href="'+alink+'">'+name+'</a></td>');
	}
	document.write('    </tr>');
}

document.write('  <table width="100%" border="0" cellpadding="1" cellspacing="1"  bgcolor="#FFFFFF">');
addMenuItem("Trails (non-motorized)","../parks/trailsforestry.html",true);
	addMenuItem("Greenway","../parks/greenway.html",false);
	addMenuItem("Mountain Bike/Hiking Trails","../parks/mountainbikinghikingtrails.html",false);
	addMenuItem("Fitness Trails","../parks/fitnesstrails.html",false);
	addMenuItem("Downtown Fitness Mile","../parks/downtownfitnessmile.html",false);
addMenuItem("Forestry","../parks/trailsforestry.html",true);
	addMenuItem("Memorial Tree/Bench","../parks/memorialtreebench.html",false);
	addMenuItem("Right-of-Way Permits","../parks/rightofwaypermits.html",false);
	addMenuItem("Proper Tree Care Planting/Pruning/Removal","../parks/treecare.html",false);
	addMenuItem("Downtown Trees","../parks/downtowntrees.html",false);
document.write('  </table>');