<!-- //

function addMenuItem(name, alink, header)
{
	document.write('    <tr> ');
	document.write('      <td width="100%" height="18" class="Menupublicworks" 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("Engineering","../cd/pw/engineering.html",true);
addMenuItem("Parking","../cd/pw/parking.html",true);
addMenuItem("Street","../cd/pw/street.html",true);
addMenuItem("Stormwater","../cd/sw/stormwater.html",true);
	addMenuItem("Maintenance","../cd/sw/maintenance.html",false);
	addMenuItem("Improvements","../cd/sw/improvements.html",false);
	addMenuItem("Plan Review","../cd/sw/planreview.html",false);
	addMenuItem("Inspections","../cd/sw/inspections.html",false);
	addMenuItem("Floodplain Info","../cd/sw/floodplaininfo.html",false);
	addMenuItem("Water Quality","../cd/sw/waterquality.html",false);	
document.write('  </table>');
//-->