function RecalculateBackground() {
  var contentHeight = $('#content').outerHeight();
  var headerHeight = 220;
  var footerHeight = 232;
  var footerBottomIndent = 0;
/*  var centerHeight = contentHeight - headerHeight - footerHeight;*/
  var centerHeight = contentHeight - 117 - footerHeight;
  var contentBackgroundObject = $('#content .contentBackground');
  contentBackgroundObject.children('.header').height(headerHeight);
/*  contentBackgroundObject.children('.center').height(centerHeight).css('top', headerHeight);*/
  contentBackgroundObject.children('.center').height(centerHeight+100).css('top', 80);
/*  contentBackgroundObject.children('.footer').height(footerHeight - footerBottomIndent).css('top', headerHeight + centerHeight);*/
  contentBackgroundObject.children('.footer').height(footerHeight - footerBottomIndent).css('top', headerHeight + centerHeight -120);
}

$(document).ready(function () {
  Cufon.replace('#content .jumpUp a, .carousel .header p strong, .carousel .text .more a, #content .header p strong', { fontFamily: 'Geometric712Medium', hover: true });
  Cufon.replace('#content h1, #content .article p:first-letter, #footer .nav ul li a, .carousel .header .asH1', { fontFamily: 'Geometric703ExtraBold', hover: true });
  Cufon.replace('#header .nav ul li a', { fontFamily: 'Geometric712Bold', hover: true });
  setTimeout(RecalculateBackground, 10);
});

