в хтмл-низ
Выделеное жирным шрифтом меняем на свое
Для изменения слова Участники
Код:
<script> <!-- userof="Люди" str = document.getElementById("navuserlist").innerHTML if( (pos=str.indexOf("Участники")) != -1 ) document.getElementById("navuserlist").innerHTML=str.substring(0,pos)+userof+str.substring(pos+9,str.length-1) --> </script>
Для изменения слова Правила
Код:
<script> <!-- pravilof="Законы" str = document.getElementById("navrules").innerHTML pos = str.indexOf("Правила") document.getElementById("navrules").innerHTML=str.substring(0,pos)+pravilof+str.substring(pos+14,str.length-1) --> </script>
Для изменения слова Поиск
Код:
<script> <!-- findof="Найти" str = document.getElementById("navsearch").innerHTML pos = str.indexOf("Поиск") document.getElementById("navsearch").innerHTML=str.substring(0,pos)+findof+str.substring(pos+5,str.length-1) --> </script>