var tips; 
var theTop = 150;
var old = theTop;
function initFloatTips() {
  tips = document.getElementById('online');
  moveTips();
};
function moveTips() {
  var tt=20;
  if (window.innerHeight) {
    pos = window.pageYOffset
  }
  else if (document.documentElement && document.documentElement.scrollTop) {
    pos = document.documentElement.scrollTop
  }
  else if (document.body) {
    pos = document.body.scrollTop;
  }
  pos=pos-tips.offsetTop+theTop;
  pos=tips.offsetTop+pos/10;
  if (pos < theTop) pos = theTop;
  if (pos != old) {
    tips.style.top = pos+"px";
    tt=20;
  }
  old = pos;
  setTimeout(moveTips,tt);
}
function expand(){
	if (getObject("floatbar").className!='floatbar_ex')
	{
		getObject("floatbar").className='floatbar_ex';
		getObject("floatbar").innerHTML='<table cellpadding="0" cellspacing="0" width="110"><tr><td class="online_title" valign="top"><img onclick="expand();" src="/skin/ly/imm_01.gif" height="13" width="15" align="absmiddle" /></td></tr><tr><td class="online_content"><a target="_blank" href="tencent://message/?uin=516284586&Site=ÀÖÑô¿Æ¼¼&Menu=yes"><img border="0" SRC="http://wpa.qq.com/pa?p=1:516284586:7" alt="µã»÷×ÉÑ¯" /></a></td></tr><tr><td height="2"><img src="/skin/ly/bottom.gif" height="50" width="110" /></td></tr></table>';
	}
	else
	{
		getObject("floatbar").className='floatbar';
		getObject("floatbar").innerHTML='<img onclick="expand();" style="cursor:hand;" src="/skin/ly/imc_07.gif" border="0" /><br /><img src="/skin/ly/imc_08.gif" border="0" />';
	}
}
