| I want to share this for you guys, i also faced the same situation, this is that i have done
 In your header.php, instead of
 
 {$l_menu[0]}{$l_menu[7]}{$l_menu[3]}{$l_menu[2]}{$l_menu[1]}{$l_menu[4 ]}{$l_menu[5]}{$l_menu[6]}{$l_sepr}
 
 You put
 
 <span id="bbforummenu"></span>
 
 In your footer.php, at the end, before class tag </body>, put this code
 
 <script language="javascript1.2">
 var str = '<?php echo $l_menu[0].$l_menu[7].$l_menu[3].$l_menu[2].$l_menu[1].$l_menu[4].$l_m enu[5].$l_menu[6].$l_sepr; ?>';
 document.all.bbforummenu.innerHTML=str;
 </script>
 
 Explaination:
 
 Those variables only load after the main forum page loaded, before footer.php is called. It's just a javascript, its job is to put back the text to the span id bbforummenu
 |