
$(document).ready(function() {
id_dch=1;
total_abas=3;
//if(document.getElementById("home_fotolog") != null){
//destaque
function troca_tv(x,y){
id_vai=x;
id_said=y;
if(id_said==total_abas){id_dch=0;id_entrad=1;id_said=total_abas;}
zera_alterna();
alterna_tv = setInterval(circula_tv, 5000);
id_entrad=id_vai;
id_said=id_dch;
id_dch=id_vai*1;
id_marca=id_dch-1;
chamdada_tvsaid='#fotos_tv_'+id_said;
chamdada_tventrad='#fotos_tv_'+id_entrad;
txt_tvsaid='#texto_tv_'+id_said;
txt_tventrad='#texto_tv_'+id_entrad;

$('.home_fotolog_pag'+id_said).removeClass('selected');
$('.home_fotolog_pag'+id_entrad).addClass('selected');

$(chamdada_tvsaid).fadeOut('slow');
$(chamdada_tventrad).fadeIn('slow');
$(txt_tvsaid).fadeOut('slow');
$(txt_tventrad).fadeIn('slow');
}


//BotÃµes

//numericos
$('.home_fotolog_pag1').mouseover(function(){troca_tv('1','0');});
$('.home_fotolog_pag2').mouseover(function(){troca_tv('2','1');});
$('.home_fotolog_pag3').mouseover(function(){troca_tv('3','2');});


$('#fotologtv_tabs a').click(function(){

//id_dch=id_vai-1;
});


//circular

function alterana() {
  alterna_tv = setInterval(circula_tv, 5000);
}
function zera_alterna() {
  clearInterval(alterna_tv);
}
function circula_tv(){
id_entrad=id_dch+1;
id_said=id_dch;
if(id_dch==total_abas){id_dch=0;id_entrad=1;id_said=total_abas;}
chamdada_tvsaid='#fotos_tv_'+id_said;
chamdada_tventrad='#fotos_tv_'+id_entrad;
txt_tvsaid='#texto_tv_'+id_said;
txt_tventrad='#texto_tv_'+id_entrad;

$('.home_fotolog_pag'+id_said).removeClass('selected');
$('.home_fotolog_pag'+id_entrad).addClass('selected');

$(chamdada_tvsaid).fadeOut('slow');
$(chamdada_tventrad).fadeIn('slow');
$(txt_tvsaid).fadeOut('slow');
$(txt_tventrad).fadeIn('slow');
id_dch=id_dch+1;
}

alterana();


});




