<!--

var NN = document.layers;
var IE = document.all;

function make( pbj, obj ){
 var pbj = ( !pbj ) ? "" : "document."+pbj+".";
 this.css = ( NN ) ? eval(pbj+"document."+obj) : eval("document.all."+obj+".style");
 this.y = ( NN ) ? this.css.top : this.css.pixelTop;
 this.move = l_move;
 this.show = l_show;
 return this;
}

function l_move( y ){
 this.y = y;
 this.css.top = this.y;
}

function l_show(){
 this.css.visibility = "visible";
}

function scrll(){
 var top = ( IE ) ? document.body.scrollTop : ( NN ) ? window.pageYOffset : M.y;
 if( top!=M.y ){
  p = ( top - M.y ) * .1;
  p = ( p>0 ) ?  Math.ceil( p ) : Math.floor( p );
  M.move( M.y + p );
 }
 setTimeout( "scrll()", 10 );
}

function init(){
 if( IE ){
  L1 = "N";
  L2 = "M";
 } else if( NN ){
  L1 = "M";
  L2 = "N";
 };
 eval( L1+"=new make('','RtCol');"+
       L2+"=new make('RtCol','fMenu');"+L2+".show();" );
 scrll();
}
//-->
