var foto = new Image(1,1);
function controlGaleria(indice){ 
  var myPages = $$('.pagina');
  myPages.each(
    function(i){
      $(i).style.display = "none";
    }
  ); 
  idPagina = "pag"+indice;
  $(idPagina).style.display = "block";
}

function muestraFotoGrande(carpeta,subcarpeta,id,ancho,alto){
  var anchoFoto =  ancho;
  var altoFoto = alto;
  foto.src= "fotos/"+carpeta +"/"+subcarpeta+"/"+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 cierraFoto(){
  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";
}

