// INCLUDE TO: page.headerData.200

function alignBackground() 
{
   if (document.getElementById("stdC_contentColumn")) 
   {
      // Bildhöhe
      var imageHeight = 100;
      // Hintergrund - Einzug oben 
      var backgroundPadding = 50;
      // Ausgangshöhe
      var originalHeight = document.getElementById("stdC_contentColumn").offsetHeight - backgroundPadding +10;
      // Berechnete Höhe
      var calculatedHeight = (Math.floor(originalHeight / imageHeight ) * imageHeight) + imageHeight;
      // Minimalhöhe
      var minimalHeight = 100;
      if (calculatedHeight < minimalHeight) 
      {
         calculatedHeight = minimalHeight;
      }
      document.getElementById("stdC_contentColumn").style.height = String(calculatedHeight + backgroundPadding + 10);
      document.getElementById("stdC_background").style.height = String(calculatedHeight + 10);
      document.getElementById("stdC_backgroundOverlay").style.height = String(calculatedHeight - 10);
      // Hintergrund einblenden
      //document.getElementById("stdC_background").style.visibility = "visible";
      // Impressum einblenden
      //document.getElementById("stdC_impressum").style.visibility = "visible";
      // Bottom-Link einblenden
      document.getElementById("stdC_linkBottom").style.visibility = "visible";   
   }
}

