﻿document.writeln("<style type=\"text\/css\">");
document.writeln("#topmenu1,#topmenu2{");
document.writeln("  text-decoration:none;  color:#FFFF00;");
document.writeln("  margin:0;");
document.writeln("  padding:0;");
document.writeln("  }");
document.writeln("<\/style>");
var delta=0.165
    var collection;
    function floaters() {
        this.items    = [];
        this.addItem    = function(id,x,y,content)
                  {
                    document.write('<DIV id='+id+' style="Z-INDEX: 0; POSITION: absolute;  background-color:transparent; width:186px; height:150px;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()
        {
            if(screen.width<=800)
            {
                for(var i=0;i<collection.length;i++)
                {
                    collection[i].object.style.display    = 'none';
                }
                return;
            }
            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.documentElement.scrollLeft+followObj_x)) {
                    var dx=(document.documentElement.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.documentElement.scrollTop+followObj_y)) {
                    var dy=(document.documentElement.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('followDiv4',0,115,'<DIV id="topmenu1" style="text-align:left;font-size:12px; padding:5px; border:2px solid #ffffff;line-height:25px; background:#FD503E; height:420px; width:180px;"><a href="#" onclick=document.getElementById("topmenu1").style.display="none">关闭</a><br><a href="float.jpg" target="_blank"><img border="0" src="float.jpg" width="180" height="270" /></a><br /><span style="font-weight:600; font-size:16px;">全国专卖店火爆招商中</span><br><span style="font-size:13px;">免费招商热线：4006-999-660</span><br>联系电话：0592-5110220<br><a target="_blank" href="http://wpa.qq.com/msgrd?V=1&Uin=920116686&Site=www.580baidu.com&Menu=yes"><img src="ico_qq.gif" width="14" height="15" border="0"/>:920116686</a><br>联系人：王先生</DIV>');
	
    theFloaters.addItem('followDiv5','document.documentElement.clientWidth-180',115,'<DIV id="topmenu2" style="text-align:left;font-size:12px; padding:5px; border:2px solid #ffffff;line-height:25px; background:#FD503E; height:420px; width:180px;"><a href="#" onclick=document.getElementById("topmenu2").style.display="none">关闭</a><br><a href="float.jpg" target="_blank"><img border="0" width="180" height="270" src="float.jpg"/></a><br /><span style="font-weight:600; font-size:16px;">全国专卖店火爆招商中</span><br><span style="font-size:13px;">免费招商热线：4006-999-660</span><br>联系电话：0592-5110220<br><a target="_blank" href="http://wpa.qq.com/msgrd?V=1&Uin=920116686&Site=www.580baidu.com&Menu=yes"><img src="ico_qq.gif" width="14" height="15" border="0"/>:920116686</a><br>联系人：王先生</DIV>');
    
    theFloaters.play();