function move_center(){
  var screenh=$(window).height();
  var containerh=$(".atrium_container").height();
  var top=(screenh/2)-(containerh/2);
  if (top<0) top=0;
  $("#positioner").css({'margin-top' : top+'px'});
}

window.onresize=move_center;