$(document).ready(function(){
 function center(id)
 {
  var h=$(id).height();
  var wh=$(window).height();
  var t=(wh-h)/2;
  $(id).css("top",t+"px");
 }
 
 $(window).resize(function(){
  center("#centeredbox");
 });
 center("#centeredbox");
});
