if(document.body.offsetWidth>800){
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:1px; height:1px;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;}
}}	
var theFloaters=new floaters();
theFloaters.addItem('followDiv2',20,200,'<map name="fdtjyy"><area target="_blank" href="http://www.fdtjyy.cn" title="点击进入同济网站" shape="rect" coords="7, 14, 81, 100"><area href="tencent://message/?uin=856136666&Site=福鼎同济医院&Menu=yes" title=QQ咨询 shape="rect" coords="7, 155, 81, 199"><area href="http://lut.zoosnet.net/LR/Chatpre.aspx?id=LUT26042800" title=同济预约 target=_blank shape="rect" coords="7, 204, 80, 248"><area title=联系我们 href="http://www.fdtjyy.cn/map.asp" target=_blank shape="rect" coords="7, 252, 80, 293"></map><img border="0" src="hzpic/fdtjyy.png" width="88" height="300" usemap="#fdtjyy">');
theFloaters.addItem('followDiv1','document.body.clientWidth-108',200,'<img border="0" src="hzpic/nyny_1.gif" width="88" height="92"><BR><a target="_blank" title="纽约纽约.主题作品" href="http://nyny520.com/Pic.aspx?FileName=photo_img"><img border="0" src="hzpic/nyny_2.gif" width="88" height="71"></a><br><a target="_blank" title="纽约纽约.QQ客服" href="http://nyny520.com/Page.aspx?FileName=servers"><img border="0" src="hzpic/nyny_3.gif" width="88" height="37"></a>');
theFloaters.play();}
