$(document).ready(function(){
  // pagina quem somos
  ar_fotos_qs = Array();
  $("#fotos_qs").find("img").each(function() {
		ar_fotos_qs.push(this.id);
		$("#"+this.id).mouseover(function(){
			clearInterval(slides);	   
		});
		$("#"+this.id).mouseout(function(){
			slides = setInterval("slide_fotos_qs()", 7000);   
		});
  });
  if (document.getElementById('fotos_qs')){
		slides = setInterval("slide_fotos_qs()", 7000);
	}
  
  // pagina inicial
  ar_dest = Array();
  $("#destaques_index").find(".dtq").each(function() {
		ar_dest.push(this.id);
		$("#"+this.id).mouseover(function(){
			clearInterval(destaques);	   
		});
		$("#"+this.id).mouseout(function(){
			destaques = setInterval("slide_destaques()", 7000);   
		});
  });
  
  if (document.getElementById('destaques_index')){
		destaques = setInterval("slide_destaques()", 7000);
	}
});

idx_slide = 1;
function slide_fotos_qs(){
	if (ar_fotos_qs.length > 0){
		if (idx_slide < ar_fotos_qs.length){
			$("#"+ar_fotos_qs[idx_slide]).fadeIn(2000);
			$("#"+ar_fotos_qs[idx_slide-1]).fadeOut(2000);
			idx_slide++;
		} else {
			$("#"+ar_fotos_qs[0]).fadeIn(2000);
			$("#"+ar_fotos_qs[idx_slide-1]).fadeOut(2000);
			idx_slide = 1;
		}
	}
}

idx_destaque = 1;
function slide_destaques(){
	total_dest = ar_dest.length;
	if (idx_destaque >= total_dest){
		idx_abre = 0;
		idx_fecha = 4;
		idx_destaque = 1;
		console.log('zerou contagem');
	} else {
		idx_abre = idx_destaque;
		idx_fecha = idx_destaque - 1;
		idx_destaque++;
	}
	
	$("#"+ar_dest[idx_abre]).fadeIn(1000);
	$("#"+ar_dest[idx_fecha]).fadeOut(1000);
	console.log('abre = '+ar_dest[idx_abre]+' | fecha = '+ar_dest[idx_fecha]+' | idx_destaque = '+idx_destaque);
}

function abre_foto(src, nome, desc, marca){
	$("#img_marca").attr('src', '/img/logos/'+marca+'.jpg');
	$("#img_marca").removeClass('img_diesel');
	$("#img_marca").removeClass('img_armani');
	$("#img_marca").removeClass('img_dkny');
	$("#img_marca").addClass('img_'+marca);
	
	$("#nome_prod").removeClass('diesel');
	$("#nome_prod").removeClass('armani');
	$("#nome_prod").removeClass('dkny');
	$("#nome_prod").addClass(marca);
	
	
	
	
	$("#foto_prod_grande").attr("src", "/img/produtos/"+src);
	$("#nome_prod").html(nome);
	$("#desc_prod").html(desc);
}

function destaque(id){
  idx_destaque = id;
  
  // links
  $("#nav_dest_1").removeClass('at');
  $("#nav_dest_2").removeClass('at');
  $("#nav_dest_3").removeClass('at');
  $("#nav_dest_4").removeClass('at');
	$("#nav_dest_5").removeClass('at');
  $("#nav_dest_"+id).addClass('at');
  
  $("#dest1").hide();
  $("#dest2").hide();
  $("#dest3").hide();
  $("#dest4").hide();
	$("#dest5").hide();
  $("#dest"+id).show();
}


