// LEGACY IMPORT FROM WF1 SITE
// functions possibly not in use...

/* site specific scripts */

function siteInit(){
  // Called with the body onload event.
  // Customise according to site requirements.
  setElementsToSameHeight('three-column','round-border');
  contentFootCols = document.getElementById("content-footer-links-columns");
  //contentFootCols.style.top = "-"+contentFootCols.offsetHeight+"px";
  contentFootCols.style.visibility = "visible";
  setLayout();
}

function getSections() {
  sections = new Array();
  // disabled main-right
  sections[0] = document.getElementById('main-banner');
  sections[1] = document.getElementById('main-left');
  sections[2] = document.getElementById('main-right-disabled');
  sections[3] = document.getElementById('main-background');
  if(document.getElementById('main-content-wrapper')){
    sections[4] = document.getElementById('main-content-wrapper');
  } else {
    sections[4] = document.getElementById('main-content');
  }
  sections[5] = document.getElementById('main-footer');
  sections[6] = document.getElementById('main-content-wrapper');

  return sections;
}

