$(document).ready(function(){
  jQuery.event.add(window, "load", resizeFrame);
  jQuery.event.add(window, "resize", resizeFrame);
  
  function resizeFrame() {
    //dashboard and editor admin areas
    $('#outer').css('height', function(index) {
      return($(window).height());
    });
    $('#inner').css('paddingTop', function(index) {
      return(($(window).height() - $('#main').height())/2);
    });
  }
});
