Looking at your HTML, there are a lot of erroneous HTML tags as far as the anchor links are concerned, which is probably the culprit. For example:
Code:
<a href="http://www.mcrc.on.ca/" class="anchorclass someotherclass" rel="submenu2[click]" rev="lr">
<p style="margin-top: 0; margin-bottom: 0"></p>
<p style="margin-top: 0; margin-bottom: 0">
<img border="0" src="http://www.mcrc.on.ca/images/mcrc1/Templt1/resource_development-1.gif" width="206" height="20"></p>
<p style="margin-top: 0; margin-bottom: 0"></p>
<p style="margin-top: 0; margin-bottom: 0">
<img border="0" src="http://www.mcrc.on.ca/images/mcrc1/Templt1/blankmenu1.gif" width="206" height="20"></a>
There definitely shouldn't be all those P elements inside a simple image link. I'm thinking what you actually want is:
Code:
<a href="http://www.mcrc.on.ca/" class="anchorclass someotherclass" rel="submenu2[click]" rev="lr"><img border="0" src="http://www.mcrc.on.ca/images/mcrc1/Templt1/resource_development-1.gif" width="206" height="20" /></a>
Try cleaning up all your anchor links similar to the above.
Bookmarks