﻿
function boxSistema_Click() {
    if ($("#boxLogin").css("top") == "0px") {
        $("#boxLogin").animate({ top: -74 }, "slow");
        $("#boxLoginConteudo").animate({ top: -74 }, "slow");
    } else {
        $("#boxLogin").animate({ top: 0 }, "slow");
        $("#boxLoginConteudo").animate({ top: 0 }, "slow");
    }
}

function boxClick(boxImg, checkBox) {
    $(boxImg).toggleClass('boxSelecionado');
    document.getElementById(checkBox).checked = !document.getElementById(checkBox).checked;
    //$(checkBox).attr('checked', !$(checkBox).attr('checked'));
}