function setFooter() {
	if (tsGetElementById('FooterText') != null) {
		// Add space above copyright
		tsGetElementById('FooterCopyright').style.marginTop = tsGetElementById('FooterText').offsetHeight + 'px';
		// Move footer info into space above copright
		tsGetElementById('FooterText').style.top = tsGetElementById('Top').offsetHeight + tsGetElementById('TopNav').offsetHeight + tsGetElementById('MainContent').offsetHeight + tsGetElementById('BottomBar').offsetHeight + tsGetElementById('FooterLinks').offsetHeight + 'px';
	}
}