var delta=0.15
var collection;
function floaters() {
this.items= [];
this.addItem= function(id,x,y,content)
  {
document.write('<DIV id='+id+' style="text-align: center;Z-INDEX: 10; POSITION: absolute;  width:95px; height:60px;left:'+(typeof(x)=='string'?eval(x):x)+';top:'+(typeof(y)=='string'?eval(y):y)+'">'+content+'</DIV>');

var newItem= {};
newItem.object= document.getElementById(id);
newItem.x= x;
newItem.y= y;

this.items[this.items.length]= newItem;
  }
this.play= function()
  {
collection= this.items
setInterval('play()',10);
  }
}
function play()
{

for(var i=0;i<collection.length;i++)
{
var followObj= collection[i].object;
var followObj_x= (typeof(collection[i].x)=='string'?eval(collection[i].x):collection[i].x);
var followObj_y= (typeof(collection[i].y)=='string'?eval(collection[i].y):collection[i].y);

if(followObj.offsetLeft!=(document.body.scrollLeft+followObj_x)) {
var dx=(document.body.scrollLeft+followObj_x-followObj.offsetLeft)*delta;
dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx));
followObj.style.left=followObj.offsetLeft+dx;
}

if(followObj.offsetTop!=(document.body.scrollTop+followObj_y)) {
var dy=(document.body.scrollTop+followObj_y-followObj.offsetTop)*delta;
dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
followObj.style.top=followObj.offsetTop+dy;
}
followObj.style.display= '';
}
}

var theFloaters= new floaters();
theFloaters.addItem('followDiv1',0,175,'<table border="0" width="115" cellspacing="0" cellpadding="0"><tr><td width="100%" height="22" background="http://w.gbwin.net/site/Function/QQmsg/images/QQ_01.gif"><table border="0" width="100%" cellspacing="0" cellpadding="0"><tr><td width="89" style="FILTER: DropShadow(Color=#20629A, OffX=1, OffY=1, Positive=1);width:89px; color: #FFFFFF;font-size: 12px"><img border="0" src="http://w.gbwin.net/site/images/null.gif" width="6" height="15">在线咨询</td><td width="26" align="center"><img border="0" src="http://w.gbwin.net/site/images/null.gif" width="1" height="13"><a href="javascript:ClosedivU()"><img border="0" src="http://w.gbwin.net/site/images/null.gif" width="10" height="11"></a></td></tr></table></td></tr><tr><td width="100%" height="39" background="http://w.gbwin.net/site/Function/QQmsg/images/QQ_02.gif"><table border="0" width="100%" cellspacing="0" cellpadding="0"><tr><td width="9"></td><td width="109" style="font-size: 12px"><span style="overflow:hidden;width:98px;height:28px;"><font color="#1E3E93">我们竭诚为您提供最优质的服务!</font></span></td></tr></table></td></tr><tr><td width="100%" height="20" background="http://w.gbwin.net/site/Function/QQmsg/images/QQ_03.gif" align="center" style="font-size: 12px"><img border="0" src="http://w.gbwin.net/site/images/null.gif" width="1" height="15"><font color="#1E3E93">在线服务</font></td></tr><tr><td width="100%" height="60" background="http://w.gbwin.net/site/Function/QQmsg/images/QQ_04.gif" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0" style="font-size: 12px"><tr><td width="100%" align="center" height="50"><a target=blank href=tencent://message/?uin=385914269&Site=QQ咨询&Menu=yes><img border="0" SRC=http://wpa.qq.com/pa?p=1:385914269:1 alt="点击这里给我发消息"></a><br>点击在线咨询</td></tr><tr><td width="100%" align="center" height="50"><a target=blank href=tencent://message/?uin=1290519529&Site=QQ咨询&Menu=yes><img border="0" SRC=http://wpa.qq.com/pa?p=1:1290519529:1 alt="点击这里给我发消息"></a><br>点击在线咨询</td></tr></table></td></tr><tr><td width="100%"><img border="0" src="http://w.gbwin.net/site/Function/QQmsg/images/QQ_05.gif"></td></tr></table>');
theFloaters.play();
function ClosedivU()
{
   followDiv1.style.visibility="hidden";
}