$(document).ready(function() {
  hbg();
});

$(window).resize(function() {
  hbg();
});

function hbg() {
  $('.container').css('height', Math.max($(window).height(), $('.container').height()));
}

