<!--  Written by Myhyli, 2003/07/21. myhyli.blueidea.com  -->
<!--  Member Of Blueidea Web Team. -->
<!--  Welcome to www.blueidea.com. -->

	var delta_left=0.15
	var collection_left;
	function floaters_left() {
		this.items	= [];
		this.addItem	= function(id,x,y,content)
				  {
					document.write('<DIV id='+id+' style="Z-INDEX: 10; POSITION: absolute;  width:80px; height:60px;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_left				= this.items
					setInterval('play_left()',10);
				  }
		}
		function play_left()
		{
			if(screen.width<=800)
			{
				for(var i=0;i<collection_left.length;i++)
				{
					collection_left[i].object.style.display	= 'none';
				}
				return;
			}
			for(var i=0;i<collection_left.length;i++)
			{
				var followObj_left		= collection_left[i].object;
				var followObj_left_x		= (typeof(collection_left[i].x)=='string'?eval(collection_left[i].x):collection_left[i].x);
				var followObj_left_y		= (typeof(collection_left[i].y)=='string'?eval(collection_left[i].y):collection_left[i].y);

				if(followObj_left.offsetLeft!=(document.body.scrollLeft+followObj_left_x)) {
					var dx=(document.body.scrollLeft+followObj_left_x-followObj_left.offsetLeft)*delta_left;
					dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx));
					followObj_left.style.left=followObj_left.offsetLeft+dx;
					}

				if(followObj_left.offsetTop!=(document.body.scrollTop+followObj_left_y)) {
					var dy=(document.body.scrollTop+followObj_left_y-followObj_left.offsetTop)*delta_left;
					dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
					followObj_left.style.top=followObj_left.offsetTop+dy;
					}
				followObj_left.style.display	= '';
			}
		}	
		
	var theFloaters_left		= new floaters_left();
	//theFloaters_left.addItem('followDiv1','document.body.clientWidth-225',170,'<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=108 height=260><param name=movie value=002.swf><param name=quality value=high><param name="wmode" value="transparent"><param name="menu" value="false"><embed src=002.swf width=120 height=200 quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash wmode="transparent" menu="false"></embed></object>');
	theFloaters_left.addItem('followDiv2','-110','-30','<IFRAME STYLE="background-color:transparent;z-index:99999;" allowTransparency frameBorder="0" width="96" height="600" scrolling="no" src="fudong.html"></iframe>');
	//theFloaters_left.addItem('followDiv2',6,80,'<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=108 height=260><param name=movie value=002.swf><param name=quality value=high><embed src=002.swf quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash width=108 height=260></embed></object>');
	theFloaters_left.play();