// MENU
start=function() {
root = document.getElementById("menubowcab");
for (i=0; i<root.childNodes.length; i++)
{
node = root.childNodes[i];
if (node.nodeName=="LI")
{
node.onmouseover=function() {this.className+=" over";}
node.onmouseout=function() {this.className=this.className.replace("over", "");}
node.onclick=function() {this.className=this.className.replace("over", "");}
}}

root = document.getElementById("menubowizq");
for (i=0; i<root.childNodes.length; i++)
{
node = root.childNodes[i];
if (node.nodeName=="LI")
{
node.onmouseover=function() {this.className+=" over";}
node.onmouseout=function() {this.className=this.className.replace("over", "");}
node.onclick=function() {this.className=this.className.replace("over", "");}
}}}
window.onload=start;

// SUB MENU DE LA CABECERA Y MENU IZQUIERDO
function bowiemenu(llamador)
{
  var valor = llamador.getElementsByTagName('ul')[0];
  valor.style.display = valor.style.display == 'block' ? 'none' : 'block' ;
}

// CAMBIAR IMAGENES
function cambiar(nombre,path)
{
  window.document[nombre].src = path;
}

// AMPLIAR FOTOS
function fotos(titulo,foto,alto,ancho)
{
  var ventana = window.open('',"_blank","left=0,top=0,width="+alto+", height="+ancho+",toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=0"); 
  ventana.document.write('<html><head><title>'+titulo+'</title></head><body>');
  ventana.document.write('<div style="position:absolute;width:'+ancho+'px;height:'+alto+'px;left:0px;top:0px"><img src='+foto+'></div></body></html>');
  ventana.document.close();
}