	var delta;
	var collection;
	function floaters() {
		this.items	= [];
		this.addItem	= function(id,x,y,w,h,z,place,content)
				  {
					document.write('<DIV id='+id+' style="Z-INDEX: 10; POSITION: absolute;  width:'+w+'; height:'+(typeof(h)=='string'?eval(h):h)+';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= eval(x);
					newItem.y= eval(y);
					newItem.delta=parseFloat(z);
					newItem.place=place;

					this.items[this.items.length]= newItem;

				  }
		this.play	= function()
				  {
					collection= this.items;
					setInterval('play()',5);
				  }
		}

		function play()
		{
			for(var i=0;i<collection.length;i++)
			{
				var followObj		= collection[i].object;
				var followObj_x	= collection[i].x;
				if (collection[i].place=='right')
						followObj_x = eval(document.body.clientWidth)-collection[i].x;
				var followObj_y	= collection[i].y;

				if(followObj.offsetLeft!=(document.body.scrollLeft+followObj_x)) {
					var dx=(document.body.scrollLeft+followObj_x-followObj.offsetLeft)*collection[i].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)*collection[i].delta;
					dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
					followObj.style.top=followObj.offsetTop+dy;
					}
			}
		}	
	var theFloaters		= new floaters();
	var temp;
	temp ='<table width=100% height=20 border=0 cellpadding=0 cellspacing=0>';
    temp+='<tr style="background:menu">';
	temp+='<td width=0% style="background:threedshadow"></td>';		
 	temp+='<td width=0% style="background:threedhighlight"></td>';		
  	temp+='<td width=0%></td>';		
	temp+='<td width=1% valign=top>';
	temp+='<table width=3 border=0 cellspacing=0 cellpadding=0 height=20 style="border-color:threedhighlight threedshadow threedshadow threedhighlight;border-style:solid;border-width:1px" class=text>';
	temp+='<tr><td></td></tr>';
	temp+='</table>';
	temp+='</td>';
	temp+='<td width="100%" class=text><marquee scrollamount=2 scrolldelay=30 truespeed="truespeed"><font color="#FF0000">全国订购电话：021-51095468</font>&nbsp;&nbsp;&nbsp;安全丰胸专题圣荷丰胸产品，丰胸美胸，美乳，是原装进口的纯天然丰胸产品，100%用户有效，3个月增大3个杯！ 圣荷丰胸·增大坚挺套装增大1罩杯且坚挺。乳房增大 丰胸食谱 丰胸产品 丰胸方法令您展现完美胸部。<font color="#FF0000">全国订购电话：021-51095468</font>&nbsp;&nbsp;&nbsp;';
	temp+='</marquee></td>';
    temp+=' </tr>';
    temp+=' <tr style="background:threedshadow">';
	temp+='<td height=1 colspan=5>';
	temp+='</td>';	
    temp+=' </tr>';
    temp+='  <tr style="background:threeddarkshadow">';
    temp+='  <td height=1 colspan=5></td>';
    temp+='  </tr>';
	temp+='</table>';
	//theFloaters.addItem('follow_Div_left',4,100,80,60,0.05,'left','<img src=images/ad_left.jpg>');
	//theFloaters.addItem('follow_Div_right',125,100,80,60,0.05,'right','<img src=images/ad_right.jpg>');
	theFloaters.addItem('follow_Div_top',0,0,'100%',20,1,'left',temp);
	theFloaters.play();
	