	var delta=0.15
	var collection;
	function floaters() {
		this.items	= [];
		this.addItem	= function(id,x,y,content)
				  {
					document.write('<DIV id='+id+' style="Z-INDEX:10; POSITION: fixed; right:0px; width:150px; 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				= this.items
					setInterval('play()',10);
				  }
		}
		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);

				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	= '';
			}
		}	
		
	var theFloaters		= new floaters();
	theFloaters.addItem('followDiv1','document.body.clientWidth-170',50,'<style type="text/css"><!--.ataiy {font-family:Arial; font-size:12px; line-height:24px; padding-left:2px; padding-bottom:2px;margin:5px; float:right;}.ataiy a,.ataiy a:link {color: #4b0707;text-decoration: none;}.ataiy a:hover {text-decoration: none;color: #FF3300;}a:active {text-decoration: none;color: #FF3300;}.home {center" style="font-size:16px; font-weight:bold; text-align:center;}.home a,.home a:link { color:#FF3300; text-decoration:none;}.home a:visited { color:#FF3300;}.home a:hover { color:#FF3300; text-decoration:underline;}--></style><table idth="150" border="0" cellpadding="0" cellspacing="1" bgcolor="#0C2124" class="ataiy" align="left"><tr><td bgcolor="#614C41"><div align="center" style="font-weight:bold; color:#FFFFFF;"> Storm VS Storm</div></td></tr><tr><td bgcolor="#7E6954"><A href="svs_char.shtml">&nbsp;Characteristics of Battle</A> </td></tr><tr><td bgcolor="#7E6954"><A href="svs_npc.shtml">&nbsp;NPC Types &amp; Functions</A></td></tr><tr><td bgcolor="#7E6954"><A href="svs_play_fort.shtml">&nbsp;Playing the Fortress War</A></td></tr><tr><td bgcolor="#614C41"><div align="center" style="font-weight:bold; color:#FFFFFF;">Instructions</div></td></tr><tr><td bgcolor="#7E6954"><A href="svs_inst_req.shtml">&nbsp;Request for Challenge</A></td></tr><tr><td bgcolor="#7E6954"><A href="svs_inst_prepar_svs.shtml">&nbsp;Preparing for SvS</A></td></tr><tr><td bgcolor="#7E6954"><A href="svs_inst_start.shtml">&nbsp;Starting SvS</A></td></tr><tr><td bgcolor="#7E6954"><A href="svs_inst_play.shtml">&nbsp;Playing SvS</A></td></tr><tr><td bgcolor="#7E6954"><A href="svs_inst_threat.shtml">&nbsp;Threatening the owner</A></td></tr><tr><td bgcolor="#7E6954"><A href="svs_inst_end.shtml">&nbsp;End of the SvS &amp; Reward</A></td></tr><tr><td bgcolor="#7E6954"><A href="svs_inst_prepar_nxt.shtml">&nbsp;Preparing for next SvS</A></td></tr><tr><td bgcolor="#432923" class="home"><A href="http://9dragons.mmosite.com">Home</A></td></tr></table>');
	theFloaters.play();