$(document).ready(function() {

    $("#box5-img").jCarouselLite({
        auto: 4000,
        speed: 1000,
        visible: 1
    });

    /* ************************************************** */

    /*SERVIÇOS*/
    $("#aba-televisao").click(function(){
        $(this).addClass("aba-ativa");
        $("#aba-radio").removeAttr("class");
        $("#aba-impresso").removeAttr("class");
        $("#aba-internet").removeAttr("class");
        $(".servicos-radio").hide();
        $(".servicos-impresso").hide();
        $(".servicos-internet").hide();
        $(".servicos-televisao").fadeIn();
    });

    $("#aba-radio").click(function(){
        $(this).addClass("aba-ativa");
        $("#aba-televisao").removeAttr("class");
        $("#aba-impresso").removeAttr("class");
        $("#aba-internet").removeAttr("class");
        $(".servicos-televisao").hide();
        $(".servicos-impresso").hide();
        $(".servicos-internet").hide();
        $(".servicos-radio").fadeIn();
    });

    $("#aba-impresso").click(function(){
        $(this).addClass("aba-ativa");
        $("#aba-televisao").removeAttr("class");
        $("#aba-radio").removeAttr("class");
        $("#aba-internet").removeAttr("class");
        $(".servicos-televisao").hide();
        $(".servicos-radio").hide();
        $(".servicos-internet").hide();
        $(".servicos-impresso").fadeIn();
    });

    $("#aba-internet").click(function(){
        $(this).addClass("aba-ativa");
        $("#aba-televisao").removeAttr("class");
        $("#aba-radio").removeAttr("class");
        $("#aba-impresso").removeAttr("class");
        $(".servicos-televisao").hide();
        $(".servicos-radio").hide();
        $(".servicos-impresso").hide();
        $(".servicos-internet").fadeIn();
    });

    /* ************************************************** */

    $("#contato-nome").example("Seu nome");
    $("#contato-email").example("E-mail");
    $("#contato-telefone").example("Telefone");
    $("#contato-empresa").example("Empresa");
    $("#contato-mensagem").example("Mensagem");
    $(".transparencia").pngfix();


    /* CALCULA A ALTURA DAS DIVS DO RODAPÉ E APLICA O MAIOR TAMANHO À ELAS */
    var hma = $("#box1").height();
    var hmp = $("#box2").height();
    var hsn = $("#box3").height();
    var aux = Math.max(hma, hmp);
    var aux = Math.max(aux, hsn);

    $("#box1").height(aux+"px");
    $("#box2").height(aux+"px");
    $("#box3").height(aux+"px");

    /* ************************************************** */

    /* CASES */
    var close = '../../images/bt-close-mod1.jpg';
    var open = '../../images/bt-open-mod1.jpg';
    $(".cases-tit").each(function(){
        $(this).click(function(){
            $(this).parent().children(".cases-conteudo").toggle("slow");
            var imgsrc = $(this).children("img").attr("src");
           (imgsrc==close)? $(this).children("img").attr('src',open) : $(this).children("img").attr('src',close);
        });
    });

    /* ************************************************** */

    $("#convite").jCarouselLite({
        btnNext: "#next",
        btnPrev: "#previous",
        circular: false,
        scroll: 1,
        visible: 1,
        speed: 400
    });

});