fixIE6 = function()
{
	if (document.getElementById)
	{
		var fix = document.getElementById("navigationLocation");
		fix.style.position = "absolute";
		fix.style.left = "-193px";
		fix.style.top = "0";
	}
}

fixHeight = function()
{
	if (document.getElementById)
	{
		var navigationColumn = document.getElementById("navigationLocation");
		var contentColumn = document.getElementById("wrapperLocation");
		if (navigationColumn.offsetHeight > contentColumn.offsetHeight)
		{
			contentColumn.style.height = navigationColumn.offsetHeight + "px";
		}
		fixIE6();
	}
}

window.onload=fixHeight;