	function Empieza(){
	if (!document.layers) return ;
		capahover=new Layer(300) ;	
	}
	function HoverOn(lin,tex){		
		if (!document.layers) return ;
		x=lin.x ;
		y=lin.y  ;
		texto=tex ;
		capahover.document.open() ;	
		estilo="tbla11bnx"	
		texto="<a href=" + lin.href + " class=" + estilo + " onmouseout=HoverOff() target=" + lin.target + ">" + texto + "</a>" ;
		capahover.document.write(texto) ;
		capahover.document.close() ;
		capahover.left=x
		capahover.top=y ;
		capahover.visibility = "show";
	}
	function HoverOff(){			
		if(document.layers){		
			capahover.visibility = "hidden";
		}
	}