Presumably this line works:
Code:
<div class="mycolour"><h2 class="header"> <a onClick="showHide('subnavmenu');return false;" href="#">Archives Of Ontario<img src="/Archive/images/arrowwhite_down.gif" width="9" height="9" alt="" id="subnavmenu_arrow" /></a></h2></div>
but with the code you have posted it has neither an img src or an id, so as the error message says, it requires an object (the image) but it is null, so it won't do anything because it doesn't know what you're talking about.
It looks to me like you need to change this line:
Code:
<li><a href="#" onClick="showHide('sublist1');return false;" id="subheading">About Us</a>
to something like this:
Code:
<li><a onClick="showHide('sublist1');return false;" href="#">About Us<img src="/Archive/images/arrowwhite_down.gif" width="9" height="9" alt="" id="sublist1_arrow" /></a>