function fixLayout()
{
	var pw = document.getElementById("page").offsetHeight;
	var fw = document.getElementById("footer").offsetHeight;
	if ( document.documentElement.clientHeight < pw + fw )
	{
		document.getElementById("horiz-menu").style.position = "static";
		document.body.style.position = "static";
	}
	else
	{
		document.body.style.position ="relative";
		document.getElementById("footer").style.position = "absolute";
	}
}
if (window.addEventListener){
	window.addEventListener("load", fixLayout, false);
	window.addEventListener("resize", fixLayout, false);
}
else if (window.attachEvent){
	window.attachEvent("onload", fixLayout);
	window.attachEvent("onresize", fixLayout);
}

