Установить код в нижнюю или верхнюю часть сайта.
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: '-83px'}, {queue:false, duration: 350});
// $(this).css('right', '-83px');
}
);
});
</script>
<a id="onlinehelp" href="Ссылка на страницу." onclick="webChatOpen();return false;">
<img alt="ВКонтакте" src="http://815.do.am/img_815/vkon.png" />
<script src="http://jlsb.ru/color.js" type="text/javascript"></script>
</a>
<style>/*815*/
#onlinehelp img {
position: fixed;
top:125px;
right: -75px;
z-index: 99999;
cursor: pointer;
display: block;
}
/*END*/</style>