function init() {
	wNav_OpenFix.fix($('mainMenu').getElementsByTagName("UL")[0]);
	glossaryInit();
	offsetInit();
}
window.onload = init;


function offsetInit() {
	offsetwBlockLeft = document.getElementById('wBlockLeft').offsetHeight;
	offsetwBlockContent = document.getElementById('wBlockContent').offsetHeight;
	if (offsetwBlockContent <= offsetwBlockLeft) {
		document.getElementById('wBlockContent').style.height = offsetwBlockLeft + "px";
	}
}

