function sizeTable(widths) {
        var index;

        for (index in widths) {
           	var selectorIndex = parseInt(index) + 1;
            var selector = "tr th:nth-child(" + selectorIndex + ")";
            $(selector).css("width", widths[index] + "%");
            index++;
        }
    }
