<!-- //

function addMenuItem(name, alink, header)
{
	document.write('    <tr> ');
	document.write('      <td width="100%" height="18" class="Menuairport" 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("Airport Facilities","../cd/airport/airportfacilities.html",true);
	addMenuItem("Terminal","../cd/airport/terminal.html",false);
	addMenuItem("Runway (Airport/Aircraft)","../cd/airport/runway.html",false);
addMenuItem("Services","../cd/airport/services.html",true);
addMenuItem("FBO","../cd/airport/FBO.html",true);
addMenuItem("Airport Project","../cd/airport/airportprojects.html",true);
addMenuItem("Weather Reports","../cd/airport/weatherreport.html",true);
	addMenuItem("National Weather Service","http://www.nws.noaa.gov/",false);
	addMenuItem("Weather Channel","http://www.weather.com/index.html",false);
	addMenuItem("Federal Aviation Administration","http://www.faa.gov/airports_airtraffic/weather/",false);
addMenuItem("Other Airports","../cd/airport/otherairports.html",true);
document.write('  </table>');
//-->