// =================================================================
// Balances the column heights
function Columns()
{
	if(document.getElementById('left') && document.getElementById('content')){

		col1 = parseInt(document.getElementById('left').offsetHeight);
		col2 = parseInt(document.getElementById('content').offsetHeight);

		colmax = col1;
		if (col2 > colmax) colmax = col2;

		d1 = colmax - col1;
		d2 = colmax - col2;

		
		if (d1 > 0) document.getElementById('left').style.height = parseInt(document.getElementById('left').offsetHeight) +
	d1 - 0 + "px";
		if (d2 > 0) document.getElementById('content').style.height = parseInt(document.getElementById('content').offsetHeight) +
	d2 - 0 + "px";
	}
}

// =================================================================

// =================================================================
window.onload = function()
{
	// Initiate column balancers
	Columns();
	
	/*
	// Initiate the expandable menu
	var root = document.getElementById("menuList");
	getMenus(root, root);
	*/
}

// =================================================================