﻿

function HideContent(d) {
    if (d.length < 1) { return; }
    var el = document.getElementById(d);
    if (el != null) {
        el.style.display = "none";
    }
}
function ShowContent(d) {
    if (d.length < 1) { return; }
    var el = document.getElementById(d);
    if (el != null) {
        el.style.display = "";
    }
}
function ReverseContentDisplay(d) {
    if (d.length < 1) { return; }
    var el = document.getElementById(d);
    if (el != null) {
        if (el.style.display == "none") { el.style.display = "block"; }
        else { el.style.display = "none"; }
    }
}

function escondeTudo() {

    HideContent("introAnima");
    HideContent("conteudoAnima");

    HideContent("introInstalacoes");
    HideContent("conteudoInstalacoes");

    HideContent("introGames");
    HideContent("conteudoGames");

    HideContent("introMaquinema");
    HideContent("conteudoMaquinema");


    
}

function abre(modulo, link) {
    escondeTudo();
    if (modulo == 'anima') {
        ShowContent("introAnima");
        ShowContent("conteudoAnima");
    } else if (modulo == 'games') {
        ShowContent("introGames");
        ShowContent("conteudoGames");
    } else if (modulo == 'maquinema') {
        ShowContent("introMaquinema");
        ShowContent("conteudoMaquinema");
        $('#conteudoMaquinema').masonry();
    } else if (modulo == 'instalacoes') {
        ShowContent("introInstalacoes");
        ShowContent("conteudoInstalacoes");
    }
    $('.miniMenuItem').css('color', '');    
    link.style.color = "#ffffff";


}


