$(window).load(function(){
  var maxH = 0;
  $("#Content").children(".capsule").each(function(c,e){
    offset = $(e).position();
    height = $(e).height()+offset.top;
    if(height > maxH)
      maxH = height;
  });
  if(maxH < 550)
    maxH = 550;
  //console.debug(maxH);
  $("#Content").height(maxH+'px');
  $("#Grey1").height((maxH+16)+'px');
  $("#Grey2").height((maxH+16)+'px');
  $("#ContentBG").height((maxH-482)+'px');
  $("#Container").height((maxH+200)+'px');
})

