<!-- //

function addMenuItem(name, alink, header)
{
	document.write('    <tr> ');
	document.write('      <td width="100%" height="18" class="menucurrentplanning" 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("Planning & Zoning Commission","../planning/pzcommission.html",true);
	addMenuItem("Meeting Schedule/Filing Deadlines","../planning/pzscheduledeadlines.html",false);
	addMenuItem("Meeting Recaps","../planning/pzmeetingrecaps.html",false);
addMenuItem("Board of Adjustment","../planning/boardofadjustment.html",true);
     addMenuItem("Meeting Schedules/Filing Deadlines","../planning/boascheduledeadlines.html",false);
	addMenuItem("Meeting Recaps","../planning/boameetingrecaps.html",false);
addMenuItem("Other Business","../planning/otherbusiness.html",true);
	addMenuItem("Application Forms & Procedures","../planning/applicationformsprocedures.html",false);
	addMenuItem("Fee Schedules","../planning/feeschedules.html",false);
	addMenuItem("How To Brochures ","../planning/howtobrochures.html",false);
addMenuItem("Current Projects","../planning/currentprojects.html",true);
addMenuItem("Staff Contacts","../planning/staffcontacts.html",true);
document.write('  </table>');
//-->