Установка:
Заходим в ПУ » Управление дизайном » Страницы сайта и после body вставляем:
Code
<script type="text/javascript">
$(function($) {
$("#onlinehelp img").hover(
function () {
$(this).animate({right: '0'}, {queue:false, duration: 350});
//$(this).css('right', '0');
},
function () {
$(this).animate({right: '-160px'}, {queue:false, duration: 350});
// $(this).css('right', '-160px');
}
);
});
</script>
<a id="onlinehelp" href="/index/3"
onclick="webChatOpen();return false;">
<img alt="Регистрация www.CSTAV.ru" src="http://www.cstav.ru/uCoz/1/reg-cstav.png" />
</a>
<style type="text/css">
/* Rip by cstav.ru */
#onlinehelp img {
position: fixed;
top:40px;
right: -160px;
z-index: 99999;
cursor: pointer;
display: block;
}
/* END Rip by cstav.ru */
</style>
==================
Источник: WWW.CSTAV.RU