Закачиваем на сайт файл mw_hint из архива: http://depositfiles.com/ru/files/mmnw9xn50
Перед ставим код:
Code
<script type="text/javascript" src="/mw_hint.js"></script>
В CSS ставим:
Code
/* Хинт для сайта */
.hint {
background-color: #f7f7f7;
line-height: 10px;
color: #6E6E6E;
font-family: Verdana;
font-size: 10px;
width: auto;
border:1px solid #6E6E6E;
margin: 1px;
padding: 8px;
position: absolute;
visibility: hidden;}
/* Хинт для сайта */
После $ONLINE_USERS_LIST$ ставим:
Code
<script type="text/javascript">
$('a.groupAdmin').each(function(){
$(this).attr('title','[color=red]Сюда пишем описание группы "Администратор[/color]"');
});
$('a.groupModer').each(function(){
$(this).attr('title','[color=red]Сюда пишем описание группы "Модератор[/color]"');
});
$('a.groupUser').each(function(){
$(this).attr('title','[color=red]Сюда пишем описание группы "Пользователей[/color]"');
});
$('a.groupVerify').each(function(){
$(this).attr('title','[color=red]Сюда пишем описание группы "Проверенный[/color]"');
});
</script>