﻿$(document).ready(function() {
    sizeContentContainer();
});

$(window).resize(function() {
    sizeContentContainer();
});

function sizeContentContainer() {
    var height = $(window).height();
    document.getElementById('content_container').style.height = height + 'px';
}

