You should be able to do this with an advanced theme:
http://www.question2answer.org/advanced.php
In your qa-theme.php file, look for the function "nav_list". The contents currently look like this:
$this->output('<ul class="qa-nav-'.$navtype.'-list">');
foreach ($navigation as $key => $navlink)
$this->nav_item($key, $navlink, $navtype);
$this->output('</ul>');
Replace it with this:
if ( $this->template != 'ask' )
{
$this->output('<ul class="qa-nav-'.$navtype.'-list">');
foreach ($navigation as $key => $navlink)
$this->nav_item($key, $navlink, $navtype);
$this->output('</ul>');
}