I haven't looked through the code but if I were you I'd write the code as:
snippet >>>
if ($menuID == '8') {
echo '<AREA SHAPE="rect" COORDS="0,334,93,368" NOHREF>';
}
<<< end snipper
It is a good idea to enclose strings in php with single quotes instead of double quotes. It should also be faster since php don't parse string enclosed by single quotes. Only use double quotes if you really need it.
/Dotvoid