  function mostrar_panel_fotos() {
    p = document.getElementById('panel_video');
    p.style.display = 'none';
    p = document.getElementById('pestana_video');
    p.style.color = 'gray';
    p = document.getElementById('panel_fotos');
    p.style.display = 'block';
    p = document.getElementById('pestana_fotos');
    p.style.color = 'black';
  }

  function mostrar_panel_video() {
    p = document.getElementById('panel_fotos');
    p.style.display = 'none';
    p = document.getElementById('pestana_fotos');
    p.style.color = 'gray';
    p = document.getElementById('panel_video');
    p.style.display = 'block';
    p = document.getElementById('pestana_video');
    p.style.color = 'black';
  }

  function cambiar_imagen(panel, cont_paneles) {
    for (contador = 1; contador <= cont_paneles; contador++) {
      el = document.getElementById("b_foto_" + contador);
      el.className = 'selecciona';
      el = document.getElementById("foto_" + contador);
      el.style.display = 'none';
    }

    el = document.getElementById("b_foto_" + panel);
    el.className = 'seleccionado';
    el = document.getElementById("foto_" + panel);
    el.style.display = 'block';
    foto_seleccionada = panel;
  }
  
  function rowOverPanel(obj) {
    if (obj.className != 'seleccionado') {
      obj.className = 'selecciona_over';
    }
  }

  function rowOutPanel(obj) {
    if (obj.className != 'seleccionado') {
      obj.className = 'selecciona';
    }
  }
  
if ($('#foto_1').lenght > 1) {
	$('#foto_1').css('display','block');
	foto_seleccionada = 1;
}