	var delta=0.15
	var collection;
	function floaters() {
		this.items	= [];
		this.addItem	= function(id,x,y,content)
				  {
					document.write('<DIV id='+id+' style="Z-INDEX: 10; POSITION: absolute;  width:80px; 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','document.body.clientWidth-110',100,'<TABLE cellSpacing=0 cellPadding=0 width=110 border=0><TBODY><TR><TD width=110><IMG height=70 src=sto/kefu_up.gif width=110></TD></TR><TR><TD vAlign=center background=sto/kefu_middle.gif><TABLE cellSpacing=1 cellPadding=1 width="100%" border=0><TBODY><TR><TD><DIV align=center>Contact US</DIV></TD></TR><TR><TD>&nbsp; <img src=sto/msn.jpg border=0 align=middle><a target=blank href="msnim:chat?contact=kellywang76@hotmail" target="_blank"><b>steven</b></a><br>&nbsp;&nbsp;<img src=sto/msn.jpg border=0 align=middle><a target=blank href="msnim:chat?contact=homedodosales2@hotmail.com" target="_blank"><b>fiona</b></a><br>&nbsp;&nbsp;<img src=sto/msn.jpg border=0 align=middle><a target=blank href="msnim:chat?contact=homedodosales1@hotmail.com" target="_blank"><b>kinn</b></a><br>&nbsp;&nbsp;<img src=sto/msn.jpg border=0 align=middle><a target=blank href="msnim:chat?contact=homedodosales9@hotmail.com" target="_blank"><b>jerry</b></a><br>&nbsp;&nbsp;<img src=sto/msn.jpg border=0 align=middle><a target=blank href="msnim:chat?contact=fenglinger1010@hotmail.com" target="_blank"><b>yuki</b></a></TD></TR><TR><TD height=1 background=sto/kefu_mid2.gif></TD></TR><TR><TD>&nbsp;&nbsp;<img src=sto/skype.bmp border=0 align=middle width="30" height="30"><a target=blank href="skype:Stevenzhao6988?chat" target="_blank"><b>steven</b></a><br>&nbsp;&nbsp;<img src=sto/skype.bmp border=0 align=middle><a target=blank href="skype:homedodosales1?chat" target="_blank"><b>kinn</b></a><br>&nbsp;&nbsp;<img src=sto/skype.bmp border=0 align=middle><a target=blank href="skype:homedodosales18?chat" target="_blank"><b>jerry</b></a></TD></TR><TR><TD height=1 background=sto/skype.bmp></TD></TR><TR><TD>&nbsp;&nbsp;<img src=sto/skype.bmp border=0 align=middle width="30" height="30"><a target=blank href="skype:homedodosales2?chat" target="_blank">fiona</a></TD></TR><TR><TR><TD>&nbsp;&nbsp;<img src=sto/skype.bmp border=0 align=middle width="30" height="30"><a target=blank href="skype:yuki?chat" target="_blank">yuki</b></a></TD></TR><TR><TD height=1 background=sto/kefu_mid2.gif></TD></TR><TR><TD>&nbsp;&nbsp;<img src=sto/QQ.gif border=0 align=middle width="30" height="30"><a target=blank href=http://wpa.qq.com/msgrd?V=1&Uin=547597416&Site=www.cnwg.cn&Menu=no title target="_blank">QQ</a></TD></TR><TR><TD>&nbsp;&nbsp;<img src=sto/supp.gif border=0 align=middle width="16" height="17"><a target=blank href="skype:hellentan?chat" target="_blank">      </a></TD></TR></TBODY></TABLE></TD></TR><TD width=110><IMG height=31 src=sto/kefu_down.gif width=110></TD></TR></TBODY></TABLE>');
	theFloaters.play();