With the following code, I select the elements to apply as the height of the browser; but later, when I size the browser, the height does not change.
function init_heght(element) {
var y = $(window).height();
$(element).css('height', y);
};
init_heght('#section-left-menu');
init_heght('#section-rigth-content');
init_heght('.overlay');