var infobox = $('#bommeln');
var counter = 0;
var resizeTimer = null;

function myResize(){
   var height_window  = $(window).height();
   
   infobox.stop().css("height", $(window).height());
  
}


$(window).resize(function() {
    if (resizeTimer) clearTimeout(resizeTimer);
    resizeTimer = setTimeout(myResize, 50);
});
