﻿$(function() {
    //$(window).resize(function() { updateWordsPanelHeight(); });
    //updateWordsPanelHeight();
});

function updateWordsPanelHeight() {
    var totalHeight = $("body").height();
    $("#words-wrapper").height(totalHeight);
}