	var delta=1
	var collection;

	/* class floaters */
	function floaters() {

		/* ? */
		this.items	= [];

		/* addItem?
		 * 
		 * id ID
		 * x ?x
		 * y ?y
		 * content 
		 */
		this.addItem	= function(id,x,y,content) {
			document.write('<DIV id='+id+' style="Z-INDEX: 20; POSITION: absolute;  width:100px; height:80px;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);
		}

	}	//end floaters

	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);		//?
			var scroll_x = document.documentElement?document.documentElement.scrollLeft:document.body.scrollLeft;
			var scroll_y = document.documentElement?document.documentElement.scrollTop:document.body.scrollTop;

			if(followObj.offsetLeft!=(scroll_x+followObj_x)){
				var dx=(scroll_x+followObj_x-followObj.offsetLeft)*delta;
				dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx));
				followObj.style.left=followObj.offsetLeft+dx+"px";
			}

			if(followObj.offsetTop!=(scroll_y+followObj_y)) {
				//alert(document.body.scrollTop);
				var dy=(scroll_y+followObj_y-followObj.offsetTop)*delta;
				dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
				//window.status = dy;
				followObj.style.top=followObj.offsetTop+dy+"px";
			}
		}	//end for
	}

	var theFloaters		= new floaters();
    //theFloaters.addItem("followDiv1",-92,350,"<a href='http://www.ec.com.cn' target=_blank><img src=\"http://www.shippingchina.com/image/80.gif\" border=0></a>");
	theFloaters.addItem("followDiv2",document.body.offsetWidth-200,130,"<img width=\"160\" height=\"12\" src=\"/html/images/dot10.gif\" border=0 style=\"cursor:hand\" onclick=\"document.getElementById('followDiv1').style.display='none'\"><a href='/html/page.html' target=_blank><img width=\"160\" height=\"126\" src=\"/html/images/ad.gif\" border=0></a>");
	//theFloaters.addItem("followDiv2",12,150,"<a href='http://rich.sportscn.com/' target=_blank><img src=\"images/ad/euro_120.gif\" border=0 width=80 height=80></a>");
	//theFloaters.addItem("followDiv2",3,240,"<a href='http://www.shippingchina.com/html/hand/index.html' target=_blank><img src=\"/images/drumbeating/indexgg/gzct.gif\" border=0></a>");
	//theFloaters.addItem("followDiv2",document.body.offsetWidth-150,380,"<img width=\"120\" height=\"12\" src=\"/html/xhx/dot10.gif\" border=0 style=\"cursor:hand\" onclick=\"document.getElementById('followDiv2').style.display='none'\"><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"120\" height=\"120\"><param name=\"movie\" value=\"images/drumbeating/2007star.gif\"><param name=\"quality\" value=\"high\"><embed src=\"images/drumbeating/2007star.gif\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"120\" height=\"120\"></embed></object>");
    //theFloaters.addItem("followDiv2",document.body.offsetWidth-150,380,"<img width=\"100\" height=\"12\" src=\"/html/xhx/dot1.gif\" border=1 style=\"cursor:hand\" onclick=\"document.getElementById('followDiv2').style.display='none'\"><a href='http://bc.shippingchina.com/main.jsp?tourl=/serverpages/front/toagentfront.jsp?uid=08000209' target=_blank><img src=\"/images/drumbeating/indexgg/fzcz.gif\" border=0></a>");
	theFloaters.play();