<!-- //

function addMenuItem(name, alink, header)
{
	document.write('    <tr> ');
	document.write('      <td width="100%" height="18" class="Menubuilding" 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("Landlord Registration","../codeenforcement/landlordregistration.html",true);
addMenuItem("Signs","../codeenforcement/signs.html",true);
addMenuItem("New Residental Construction","../codeenforcement/residentialconstruction.html",true);
addMenuItem("New Commercial Construction","../codeenforcement/commercialconstruction.html",true);
addMenuItem("Remodels & Additions","../codeenforcement/remodelsadditions.html",true);
addMenuItem("Permits","../codeenforcement/permits.html",true);
addMenuItem("Plumbing License","../codeenforcement/plumbinglicenses.html",true);
addMenuItem("Electrical License","../codeenforcement/electricallicenses.html",true);
document.write('  </table>');
//-->