You should change the way the links are included on your pages, i.e. instead of:
<tr onclick="document.location.href='filming.html'" style="" onmouseout="style.backgroundColor=''" onmouseover="style.backgroundColor='#E1EAFF'">
<td width="28"><img width="28" height="22" src="img/arrow.gif"></td>
<td class="menu">Filming and editing</td>
</tr>
you need:
<tr onclick="document.location.href='filming.html'" style="" onmouseout="style.backgroundColor=''" onmouseover="style.backgroundColor='#E1EAFF'">
<td width="28"><img width="28" height="22" src="img/arrow.gif"></td>
<td class="menu"><a href="filming.html">Filming and editing</a></td>
</tr>