
function troca_tv(x,y){id_vai=x;}

$(document).ready(function(){
id_dch=1;

//Botões
$('.botao_tv').click(function(){
zera_alterna();
id_entrad=id_vai;
id_said=id_dch;
id_dch=id_vai*1;
id_marca=id_dch-1;
chamdada_tvsaid='#foto_tv_'+id_said;
chamdada_tventrad='#foto_tv_'+id_entrad;
txt_tvsaid='#legenda_tv_'+id_said;
txt_tventrad='#legenda_tv_'+id_entrad;

$('.botao_tv').removeClass('botao_tv_marcado');
$('.botao_tv').eq(id_marca).addClass('botao_tv_marcado');

$(chamdada_tvsaid).fadeOut('slow');
$(chamdada_tventrad).fadeIn('slow');
$(txt_tvsaid).fadeOut('slow');
$(txt_tventrad).fadeIn('slow');
//id_dch=id_vai-1;
});


//vai
$('.ch_dtv_1').click(function(){
zera_alterna();
id_entrad=id_dch+1;
id_said=id_dch;
if(id_dch==3){id_dch=0;id_entrad=1;id_said=3;}
chamdada_tvsaid='#foto_tv_'+id_said;
chamdada_tventrad='#foto_tv_'+id_entrad;
txt_tvsaid='#legenda_tv_'+id_said;
txt_tventrad='#legenda_tv_'+id_entrad;

$('.botao_tv').removeClass('botao_tv_marcado');
$('.botao_tv').eq(id_dch).addClass('botao_tv_marcado');

$(chamdada_tvsaid).fadeOut('slow');
$(chamdada_tventrad).fadeIn('slow');
$(txt_tvsaid).fadeOut('slow');
$(txt_tventrad).fadeIn('slow');
id_dch=id_dch+1;
}
);


//volta
$('.ch_dtv_0').click(function(){
zera_alterna();
id_entrad=id_dch-1;
id_said=id_dch;
id_marca=id_dch-2;
if(id_dch==1){id_dch=4;id_entrad=3;id_said=1;id_marca=2;}
chamdada_tvsaid='#foto_tv_'+id_said;
chamdada_tventrad='#foto_tv_'+id_entrad;
txt_tvsaid='#legenda_tv_'+id_said;
txt_tventrad='#legenda_tv_'+id_entrad;

$('.botao_tv').removeClass('botao_tv_marcado');
$('.botao_tv').eq(id_marca).addClass('botao_tv_marcado');

$(chamdada_tvsaid).fadeOut('slow');
$(chamdada_tventrad).fadeIn('slow');
$(txt_tvsaid).fadeOut('slow');
$(txt_tventrad).fadeIn('slow');
id_dch=id_dch-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==3){id_dch=0;id_entrad=1;id_said=3;}
chamdada_tvsaid='#foto_tv_'+id_said;
chamdada_tventrad='#foto_tv_'+id_entrad;
txt_tvsaid='#legenda_tv_'+id_said;
txt_tventrad='#legenda_tv_'+id_entrad;

$('.botao_tv').removeClass('botao_tv_marcado');
$('.botao_tv').eq(id_dch).addClass('botao_tv_marcado');

$(chamdada_tvsaid).fadeOut('slow');
$(chamdada_tventrad).fadeIn('slow');
$(txt_tvsaid).fadeOut('slow');
$(txt_tventrad).fadeIn('slow');
id_dch=id_dch+1;
}

alterana();



// ##### chamadas TVEXAME #####
id_ch=1;

$('.ch_tv_1').click(function(){
id_entra=id_ch+1;
id_sai=id_ch;
if(id_ch==3){id_ch=0;id_entra=1;id_sai=3;}
chamdada_tvsai='#ch_tv_'+id_sai;
chamdada_tventra='#ch_tv_'+id_entra;
$(chamdada_tvsai).fadeOut('slow');
$(chamdada_tventra).fadeIn('slow');
id_ch=id_ch+1;
}
);

$('.ch_tv_0').click(function(){
id_entra=id_ch-1;
id_sai=id_ch;
if(id_ch==1){id_ch=4;id_entra=3;id_sai=1;}
chamdada_tvsai='#ch_tv_'+id_sai;
chamdada_tventra='#ch_tv_'+id_entra;
$(chamdada_tvsai).fadeOut('slow');
$(chamdada_tventra).fadeIn('slow');
id_ch=id_ch-1;
}
);


});




