// fix the footer so it doesn't overlap the sidebar

	var sideBarHeight; var contentHeight; var maxHeight;
	var sidebar = document.getElementById("sidebar");
	var content = document.getElementById("content");

	sideBarHeight = sidebar.offsetHeight; 	
	contentHeight = content.offsetHeight; 
	maxHeight = Math.max(sideBarHeight, contentHeight);

	document.getElementById("content").style.height = maxHeight+"px"; 
	if (window.opera) { document.getElementById("content").style.height = (parseInt(maxHeight) + 130)+"px"; }
	contentHeight = content.offsetHeight; 
	//alert("sideBarHeight is: "+sideBarHeight+"\ncontentHeight is: "+contentHeight+"\nmaxHeight is: "+maxHeight);

/*	
	if (sidebar.style.pixelHeight) { 
		sideBarHeight = sidebar.style.pixelHeight; 
	} else if (sidebar.offsetHeight) { 
		sideBarHeight = sidebar.offsetHeight; 
	}

	if (content.style.pixelHeight) { 
		contentHeight = content.style.pixelHeight; 
	} else if (content.offsetHeight) { 
		contentHeight = content.offsetHeight; 
	}
	
	if (content.style.pixelHeight) { 
		document.getElementById("content").style.height = maxHeight+"px"; 
	} else if (content.offsetHeight) { 
		document.getElementById("content").style.height = maxHeight+"px"; 
		//contentHeight = content.offsetHeight; 
		//alert("sideBarHeight is: "+sideBarHeight+"\ncontentHeight is: "+contentHeight+"\nmaxHeight is: "+maxHeight);
	}
*/	
// EOF