document.write("<br><img src='logoesc.png' align='bottom' border='0' height='180' hspace='0' vspace='0' width='180'><br><br>" +
				"<br>" +
				"<div id='menu_princ' >" + 
				"<ul>" + 
				"<li><a href='default.htm'>Inicio</a></li>" + 
				"<li><a href='quienessomos.htm'>Quienes Somos</a></li>" + 
				"<li><a href='actividades.htm'>Actividades</a></li>" + 
				"<li><a href='dondepracticar.htm'>Donde Practicar</a></li>" + 
				"<li><a href='nacionales.html'>Foto/Video</a></li>" + 
				"<li><a href='dvd.htm'>Dvds</a></li>" + 
				"<li><a href='http://www.ma-taichichuan.com.ar/tcc-corp.html' target='_blank'>Empresas</a></li>" + 
				"<li><a href='instructorado.htm'>Instructorado</a></li>" + 
				"</ul>" + 
				"</div>" + 
				"<br>" + 
				"<a href='http://www.youtube.com/user/matsunkuen2' target='_blank' class='tooltip'><img src='logo_yt.png' height=30><span>Nuestros Videos en YouTube</span></a>" +
				"<a href='http://www.facebook.com/profile.php?id=100001383193946' target='_blank' class='tooltip'><img src='logo_f.png' height=30><span>Nuestro Facebook</span></a>"  +
				"<br><br>" +
				"<div id='menu_princ'>" + 
				"<ul>" +
				"<li><a href='contacto_escuela.htm'>Contacto</a></li>" + 
				"</ul>" +
				"</div>" 
				);
 
var temporizadorplegar;
var temporizadordesplegar;

function cambia()
  {
}

function mover()
  {
   var actual=parseInt(document.getElementById("contenedor_nov").style.top);

   if (actual < 0)
     {
      mover_abajo();
     }
   else
     {
      mover_arriba();
     }
   
  }


function mover_arriba()
  {
   var pos=1;
   clearTimeout(temporizadordesplegar);

   var actual=parseInt(document.getElementById("contenedor_nov").style.top);
  
   if(actual>-280)
     {
      actual=actual-15;
      document.getElementById("contenedor_nov").style.top=actual+"px";
      temporizadorplegar=setTimeout("mover_arriba()",10);
     }
   else
     {
      document.getElementById("contenedor_nov").style.visibility="hidden";
      clearTimeout(temporizadorplegar);
     }
 }

function mover_abajo()
  {
   var pos=1;
   clearTimeout(temporizadordesplegar);
   document.getElementById("contenedor_nov").style.visibility="visible";

   var actual=parseInt(document.getElementById("contenedor_nov").style.top);

   if(actual<20)
     {
      actual=actual+15;
      document.getElementById("contenedor_nov").style.top=actual+"px";
      temporizadorplegar=setTimeout("mover_abajo()",10);
     }
   else
     {
      clearTimeout(temporizadorplegar);
     }
 }

 
function moverl()
  {
   var pos=1;
   clearTimeout(temporizadordesplegar);

   var actual=parseInt(document.getElementById("contenedor_nov").style.left);
  
   if(actual>-280)
     {
      actual=actual-15;
      document.getElementById("contenedor_nov").style.left=actual+"px";
      temporizadorplegar=setTimeout("moverl()",10);
     }
   else
     {
      document.getElementById("contenedor_nov").style.visibility="hidden";
      clearTimeout(temporizadorplegar);
     }
 }

function moverr()
  {
   var pos=1;
   clearTimeout(temporizadordesplegar);
   document.getElementById("contenedor_nov").style.visibility="visible";

   var actual=parseInt(document.getElementById("contenedor_nov").style.left);

   if(actual<300)
     {
      actual=actual+15;
      document.getElementById("contenedor_nov").style.left=actual+"px";
      temporizadorplegar=setTimeout("moverr()",10);
     }
   else
     {
      clearTimeout(temporizadorplegar);
     }
 }

