var refImg_fotoInterior_actual; //img

var refImg_fotoInterior_menor;
var refImg_fotoInterior_maior;

var fadeDelay = 3000;
var transitionDelay = 5000;
var timer = null;

function alteraImagemfotoInterior(i) {
  if (i != -1) {
    jQuery('.fotoInterior#imagem_fotoInterior_id' + (((i+1) > refImg_fotoInterior_maior) ? refImg_fotoInterior_menor : i+1)).fadeIn(fadeDelay);
    //$('#pag_fotoInterior li a.sel').removeClass('sel');
    //$('#pag_fotoInterior li a[href=#imagem_fotoInterior_' + (((i+1) > refImg_fotoInterior_maior) ? refImg_fotoInterior_menor : i+1) + ']').addClass('sel');
    jQuery('.fotoInterior#imagem_fotoInterior_id' + i).fadeOut(fadeDelay,
      function() {
        refImg_fotoInterior_actual = ((i+1) > refImg_fotoInterior_maior) ? refImg_fotoInterior_menor : i+1;
        timer = setTimeout("alteraImagemfotoInterior(" + refImg_fotoInterior_actual + ")", transitionDelay);
      }
    );
  }
  else {
    refImg_fotoInterior_actual = ((i+1) > refImg_fotoInterior_maior) ? refImg_fotoInterior_menor : i+1;
    timer = setTimeout("alteraImagemfotoInterior(" + refImg_fotoInterior_actual + ")", transitionDelay);
  }
}

jQuery(document).ready(
  function() {
    jQuery('.fotoInterior.nothidden').each(
      function() {
        refImg_fotoInterior_actual = $(this).attr('id').replace(/imagem_fotoInterior_id/, '');
        refImg_fotoInterior_maior = refImg_fotoInterior_actual;
        refImg_fotoInterior_menor = refImg_fotoInterior_actual;
      }
    );
    
    jQuery('.fotoInterior').each(
      function() {
        var i = $(this).attr('id').replace(/imagem_fotoInterior_id/, '');
        if (i > refImg_fotoInterior_maior) {
          refImg_fotoInterior_maior = i;
        }
        if (i < refImg_fotoInterior_menor) {
          refImg_fotoInterior_menor = i;
        }
      }
    );
	
    /*$('#pag_fotoInterior li a').click(
      function() {
        if (timer) {
          clearTimeout(timer);
        }
        $('.imagem_fotoInterior').stop();
        var i = parseInt($(this).attr('href').replace(/imagem_fotoInterior_/, '').replace(/#/, ''));
        if (i != refImg_fotoInterior_actual) {
          $('.imagem_fotoInterior').hide().css('opacity', 1);
          $('.imagem_fotoInterior#imagem_fotoInterior_' + i).show();
          refImg_fotoInterior_actual = i;
          $('#pag_fotoInterior li a.sel').removeClass('sel');
          $('#pag_fotoInterior li a[href=#imagem_fotoInterior_' + (refImg_fotoInterior_actual) + ']').addClass('sel');
          timer = setTimeout("alteraImagemfotoInterior(" + refImg_fotoInterior_actual + ")", transitionDelay);
        }
        return false;
      }
    );*/
    if (refImg_fotoInterior_maior > refImg_fotoInterior_menor)
      alteraImagemfotoInterior(-1);
  }
);