Edit your Joomla template index.php.
Here's a snippet on how I did it here... "com_smf" is the forum page.
<tr class="canvas_main">
<!-- MAIN -->
<?php
$_opt = "";
if (isset($_REQUEST['option'])) $_opt = $_REQUEST['option']; ?>
<!-- MENU -->
<?php if ( mosCountModules("left") && $_opt != "com_smf") { ?>
<td width="190" valign="top"><img src="<?php echo $mosConfig_live_site;?>/templates/mambohacks3/images/blank.gif" alt="" width="180" height="1" /> <?php mosLoadModules ('left', -3); ?></td>
<?php } ?>
</tr>
What this does is, it only shows the right menu if the page is NOT "com_smf".