﻿$(document).ready(function() {
    var doc = $('.document').height();
    var menu = $('.menu_top').height();
    menu += $('.menu').height();
    menu += $('.menu_bottom').height();
    menu += $('.logo').height();
    menu += parseInt($('.menu').css("padding-top"), 10);
    menu += parseInt($('.menu_bottom').css("padding-top"), 10);

    $('#obfuscate').css("height", menu + "px");


    if (doc < menu) {
        $('.document').css("height", menu + "px");
    } else {
    $('.menu_bottom').css("height", $('.document').height() - $('.menu_top').height() - 52 - $('.menu').height() - $('.logo').height() + "px");
    }
});
