// JavaScript Document




var nn=(navigator.appName.indexOf("Netscape")!=-1);
var t;

var dD=document,dH=dD.html,dB=dD.body,px=dD.layers?'':'px';

var ini = dB.clientHeight;
ini = (ini/3)-20;

function floatSS(iX,iY,id){
var L=dD.getElementById?dD.getElementById(id):dD.all?dD.all[id]:dD.layers[id];		
this[id+'O']=L;
if(dD.layers)L.style=L;
L.nX=L.iX=iX;
L.nY=L.iY=iY;
L.P=function(x,y){this.style.left=x+px;this.style.top=y+px;};
L.Fss=function(){
		var pX, pY;	
		pX=(this.iX >=0)?0:nn?innerWidth:nn&&dH.clientWidth?dH.clientWidth:dB.clientWidth;	
		pY=nn?pageYOffset:nn&&dH.scrollTop?dH.scrollTop:dB.scrollTop;	
		if(this.iY<0)pY+=nn?innerHeight:nn&&dH.clientHeight?dH.clientHeight:dB.clientHeight;	

this.nX+=.2*(pX+this.iX-this.nX);this.nY+=.2*(pY+this.iY-this.nY);this.P(this.nX,this.nY);
setTimeout(this.id+'O.Fss()',50);
};
return L;
}

function floatSSie(iX,iY,id){
var L=dD.getElementById(id);		
this[id+'O']=L;
L.nX=L.iX=iX;
L.nY=L.iY=iY;
L.P=function(x,y){
this.style.left=x+px;
this.style.top=y+px;};

L.Fss=function(){var pX, pY;	
if (this.iX>=0){pX=0;}else{pX=dB.clientWidth;}

pY=dB.scrollTop;	

this.nX+=.2*(pX+this.iX-this.nX);
this.nY+=.2*(pY+this.iY-this.nY);
this.P(this.nX,this.nY);
setTimeout(this.id+'O.Fss()',50);
};
return L;
}

if (nn){
floatSS(10,ini,'MenuFloat').Fss();}//185
else
{
floatSSie(13,ini-8,'MenuFloat').Fss();//192
}




