﻿function arrangeObjects() {
    var wh = jQuery(window).height();
    var top = Math.floor((wh - 540) / 2);
    if (top < 25) top = 25;
    jQuery("#spacer").css("height", top + "px");
}
