Thanks Lee.
I found a temporary solution to the problem with a little javascript. The housemenu assigns an ID to the Home button called "NavigationItemHome". I wrote a little javascript to find the tag and set it's display to "none". It's not the best solution and there are some definite cons to using it but it works for now. I've pasted the javascript below for anyone having a similar problem:*******
<script language=javascript> window.onload = function(){ var objHomeButton if (document.getElementById) { objHomeButton = document.getElementByID('NavigationItemHome').style; } if (document.all) { objHomeButton = document.all['NavigationItemHome'].style; } if (objHomeButton) { objHomeButton.display = 'none'; } } </script>