// JavaScript Comun
var foto = new Image(1,1);
function addLoadEvent(func) { 
	  var oldonload = window.onload; 
	  if (typeof window.onload != 'function') { 
	    window.onload = func; 
	  } else { 
	    window.onload = function() { 
	      oldonload(); 
	      func(); 
	    } 
	  } 
	} 

function control(indice,y){ 
  altura =(y==undefined)? 45:y;
  var myMenu = $$('.acordeon_div');
  myMenu.each(
    function(i){
      var myEffect = new fx.Height($(i) , {duration: 100});
      myEffect.hide();
    }
  ); 
  idmenu = "menu"+indice;
  var myEffect3 = new fx.Height($(idmenu) , {duration: 500});
  myEffect3.custom(0,altura);
  var myPages = $$('.pagina');
  myPages.each(
    function(i){
      $(i).style.display = "none";
    }
  ); 
  idPagina = "pag"+indice;
  $(idPagina).style.display = "block";
}
function controlPagina(indice){ 
  var myPages = $$('.pagina');
  myPages.each(
    function(i){
      $(i).style.display = "none";
    }
  ); 
  idPagina = "pag"+indice;
  $(idPagina).style.display = "block";
}
function muestraFotoGrandePagina(id,ancho,alto){
  var anchoFoto =  ancho;
  var altoFoto = alto;
  foto.src= "fotos_paginas/"+id;
  document.images['foto_grande'].src=foto.src;
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility= "visible";
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility= "visible";
  var cambiaAltura = new fx.Height($('foto_container') , {duration: 500});
  cambiaAltura.custom(0,altoFoto);
  var cambiaAncho = new fx.Width($('foto_container') , {duration: 500});
  cambiaAncho.custom(0,anchoFoto);
  return true;
}
function cierraFotoPagina(){
  document.images['foto_grande'].src="imagenes/nulo.jpg";
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility = "hidden";
  estilo_contenedor.height= "0px";
  estilo_contenedor.width = "0px";
}
function muestraFotoGrandePersonal(id,ancho,alto){
  var anchoFoto =  ancho;
  var altoFoto = alto;
  foto.src= "fotos_personal/"+id;
  document.images['foto_grande'].src=foto.src;
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility= "visible";
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility= "visible";
  var cambiaAltura = new fx.Height($('foto_container') , {duration: 500});
  cambiaAltura.custom(0,altoFoto);
  var cambiaAncho = new fx.Width($('foto_container') , {duration: 500});
  cambiaAncho.custom(0,anchoFoto);
  return true;
}
function muestraFotoGrandeInstalaciones(id,ancho,alto){
  var anchoFoto =  ancho;
  var altoFoto = alto;
  foto.src= "fotos_instalaciones/"+id;
  document.images['foto_grande'].src=foto.src;
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility= "visible";
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility= "visible";
  var cambiaAltura = new fx.Height($('foto_container') , {duration: 500});
  cambiaAltura.custom(0,altoFoto);
  var cambiaAncho = new fx.Width($('foto_container') , {duration: 500});
  cambiaAncho.custom(0,anchoFoto);
  return true;
}
function muestraFotoGrandeLocalizacion(id,ancho,alto){
  var anchoFoto =  ancho;
  var altoFoto = alto;
  foto.src= "fotos_localizacion/"+id;
  document.images['foto_grande'].src=foto.src;
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility= "visible";
  var estilo_contenedor = $('foto_container').style;
  estilo_contenedor.visibility= "visible";
  var cambiaAltura = new fx.Height($('foto_container') , {duration: 500});
  cambiaAltura.custom(0,altoFoto);
  var cambiaAncho = new fx.Width($('foto_container') , {duration: 500});
  cambiaAncho.custom(0,anchoFoto);
  return true;
}

