$(function() {
  $('#information iframe').load(function() {
    if( this.contentWindow.document.documentElement.scrollHeight) {
      var height = this.contentWindow.document.documentElement.scrollHeight;
      if( $(this).height() != height) {
        $(this).height(height);
      }
      $(this).css({
        'overflow':'hidden',
        'width':'100%'
      });
    }
  });
  $('#information iframe').each(function() {
    $(this).triggerHandler('load');
  });
});

