﻿$(window).ready(function() {    
    setHeight();
});

$(document).ready(function() {
    $("img[@src$=png], #centro").pngfix();
});

initShadowBox = false;
function showShadowBox(p_Title, p_Width, p_Height, p_Id) {    
    var text = $("#personalidade_" + p_Id).text();

    //alert(text);

    if (!initShadowBox) {
        Shadowbox.init({
            // let's skip the automatic setup because we don't have any
            // properly configured link elements on the page
            skipSetup: true//,
            //modal: true
        });
        initShadowBox = true;
    }
    
    Shadowbox.open({
    content: '<div class="mensagem">' + text + '<br/><br/><strong>Pressione ESC para fechar.</strong>' + '</div>',
        player: "html",
        title: p_Title,
        height: p_Width,
        width: p_Height
    });
}

function setHeight() {
    var docHeight = $(document).height();
    var height = docHeight - (126 + 29);
    /*$("#centro").css('height', height);*/
    /*$("#conteudo").css('height', '100%');*/

    /*$("#rodape").css('top', '100%');*/
}

function Quadro(p_Quadro) {
    for (var x = 1; x <= 5; x++) {
        $("#quadro" + x).css('display', p_Quadro == x ? 'block' : 'none');
    }    
}
