	var delta=0.15
	var collection;
	var closeB=false;
	function floaters() {
		this.items	= [];
		this.addItem	= function(id,x,y,content)
				  {
					document.write('<DIV id='+id+' style="Z-INDEX: 10; POSITION: absolute;  width:95px; height:230px;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<=600 || closeB)
			{
				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.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	= '';
			}
		}	
				function closeBanner()
		{
			closeB=true;
			return;
		}
		
	var theFloaters		= new floaters();
	//
    theFloaters.addItem('followDiv1','document.body.clientWidth-118',100,'<a href="../ShowLine.asp?id=38" title="欢迎您访问517租车网" target="_blank"><div style="width:116px;height:150px;border:#aaa 1px solid;border-bottom:0px;cursor:pointer;background:url(../ad/德天瀑布.GIF) center no-repeat #FFF;"></div><div style="width:116px;height:20px;background:url(../ad/图1.gif) no-repeat;padding-left:9px;">德天瀑布</div></a>   <div style="width:116px;height:50px;margin:25px 0px;"><img src="../ad/图2.gif" /></div><a href="../ShowLine.asp?id=39" title="欢迎您访问517租车网" target="_blank"><div style="width:116px;height:150px;border:#aaa 1px solid;border-bottom:0px;cursor:pointer;background:url(../ad/越南.gif) center no-repeat #FFF;"></div><div style="width:116px;height:20px;background:url(../ad/图1.gif) no-repeat;padding-left:9px;">越南</div></a>');
   // theFloaters.addItem('followDiv1','document.body.clientWidth-100',100,'<img src=/images/close.gif onClick="closeBanner();"><br><img src=/ad/ad-001.gif width=95 height=230 border=0>');
	//theFloaters.addItem('followDiv2',15,80,'<iframe marginwidth=0 marginheight=0 frameborder=0 scrolling=no src="/OICQ.htm" width=110 height=233></iframe>');
	theFloaters.addItem('followDiv2',2,100,'<a href="../ShowLine.asp?id=43" title="欢迎您访问517租车网" target="_blank"><div style="width:116px;height:150px;border:#aaa 1px solid;border-bottom:0px;cursor:pointer;background:url(../ad/北海银滩.gif) center no-repeat #FFF;"></div><div style="width:116px;height:20px;background:url(../ad/图1.gif) no-repeat;padding-left:9px;">北海银滩</div></a>   <div style="width:116px;height:50px;margin:25px 0px;"><img src="../ad/图2.gif" /></div><a href="../ShowLine.asp?id=40" title="欢迎您访问517租车网" target="_blank"><div style="width:116px;height:150px;border:#aaa 1px solid;border-bottom:0px;cursor:pointer;background:url(../Ad/桂林.gif) center no-repeat #FFF;"></div><div style="width:116px;height:20px;background:url(../ad/图1.gif) no-repeat;padding-left:9px;">桂林</div></a>');
    //theFloaters.addItem('followDiv2',05,100,'<img src=/images/close.gif onClick="closeBanner();"><br><img src=/ad/ad-001.gif width=95 height=230 border=0>');
    //theFloaters.addItem('followDiv1','document.body.clientWidth-110',140,'<a href="http://" target="_blank"><img src=/images/ width=95 height=95 border=0></a><br><br><img src=/images/close.gif onClick="closeBanner();">');
	//theFloaters.addItem('followDiv2',0,100,'<a href="http://" target="_blank"><img src=/images/ width=95 height=95 border=0></a><br><br><img src=/images/close.gif onClick="closeBanner();">');
	theFloaters.play();