/*
// Layout scripts to make the page look like I want it too also some nifty javascript widgets
*/

function matchColumns() {
	var main, nav, max1, test
 
	main = document.getElementById('submain');
	if (!main)
	{
		return;
	}
	max1 = main.clientHeight;
	
	nav = document.getElementById('nav');
	if (!nav)
	{
		return;
	}
	test = nav.clientHeight;
	if (test > max1)
		max1 = test;
	
	main.style.height = max1 +"px";
	nav.style.height = max1 +"px";
}

