	var delta1=0.08
	var collection1;
	function floaters1() {
		this.items1	= [];
		this.addItem1	= function(id,x,y,content)
				  {
					document.write('<DIV id='+id+' style="position:absolute;z-index:2;display:none;background:azure;border:1px double #000099;font-size:12px;Z-INDEX: 11; POSITION: absolute;  width:150px; height:60px;left:'+(typeof(x)=='string'?eval(x):x)+';top:'+(typeof(y)=='string'?eval(y):y)+'p">'+content+'</DIV>');
					
					var newItem				= {};
					newItem.object			= document.getElementById(id);
					newItem.x				= x;
					newItem.y				= y;

					this.items1[this.items1.length]		= newItem;
				  }
		this.play1	= function()
				  {
					collection1				= this.items1
					setInterval('play1()',10);
				  }
		}
		function play1()
		{

			for(var i=0;i<collection1.length;i++)
			{
				var followObj		= collection1[i].object;
				var followObj_x		= (typeof(collection1[i].x)=='string'?eval(collection1[i].x):collection1[i].x);
				var followObj_y		= (typeof(collection1[i].y)=='string'?eval(collection1[i].y):collection1[i].y);

				if(followObj.offsetLeft!=(document.body.scrollLeft+followObj_x)) {
					var dx=(document.body.scrollLeft+followObj_x-followObj.offsetLeft)*delta1;
					dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx));
					followObj.style.left=followObj.offsetLeft+dx+"px";
					}

				if(followObj.offsetTop!=(document.documentElement.scrollTop+followObj_y)) {
					var dy=(document.documentElement.scrollTop+followObj_y-followObj.offsetTop)*delta1;
					dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
					followObj.style.top=followObj.offsetTop+dy+"px";
					}
				//followObj.style.display	= '';
			}
		}	
		
	var theFloaters1		= new floaters1();
	//ͼƬ
	//theFloaters.addItem('followDiv1',6,390,'<a href=http://www.hongzhoukan.com/Article.aspx?id=5297 target=_blank><img src=images/dcwj.gif border=0 WIDTH=103 HEIGHT=180></a>');
	//ҲͼƬ
	theFloaters1.addItem1('information','document.body.clientWidth-155','document.documentElement.clientHeight-70',"<p style='background-color:#99CCFF; text-align:right; line-height:20px;'><a href='javascript:;'  onClick=document.getElementById('information').style.display='none'>关闭</a></p><p style='padding:10px;'><a href='/msg_list.php' target='_blank'>您有新的短消息，请注意查收！</a></p>");
	
	//flash
	//theFloaters.addItem('followDiv1',1,430,'<EMBED src=swf/gb2.swf quality=high  WIDTH=116 HEIGHT=140 TYPE=application/x-shockwave-flash id=ad wmode=opaque></EMBED>');
	//Ҳflash
	//theFloaters.addItem('followDiv2','document.body.clientWidth-118',300,'<EMBED src=swf/88.swf quality=high  WIDTH=102 HEIGHT=300 TYPE=application/x-shockwave-flash id=ad wmode=opaque></EMBED>');
	
	//
	//theFloaters.addItem('followDiv2',6,80,'<EMBED src=images/duilian.swf quality=high  WIDTH=100 HEIGHT=300 TYPE=application/x-shockwave-flash id=ad wmode=opaque></EMBED>');
	theFloaters1.play1();
	
//ͼƬʽ÷
//<a href=http://www.makewing.com/lanren/ target=_blank><img src=images/ad_100x300.jpg border=0></a>
	