function initPage() {
  $("#UserRecText").ajaxcontrol({textmode:"multiline"});
  var puff = $("#fbpuff");
  if (puff.length > 0) {
    puff.remove();
    $('#wrapper div.puff:nth-child(' + fbpos + ')').before(puff);
  }
  var recpuff = $("#recpuff");
  recpuff.remove();
  $('#wrapper div.puff:nth-child(' + recpos + ')').before(recpuff);

  arrangePuffs("#wrapper", function(){arrangeReady("#wrapper");});
}


function windowResized() {
  if ($(window).width() < responsiveThresholdNarrow) {
    $('div.twocols img').attr({height:"auto",width:200});
    $('div.twocols').removeClass('twocols');
  }
}
