/* Created by Renowned Media, Nov 04, 2007, updated Nov 13 2007.
This rounds either the content height or the sidebar height to a number divisible
by 30, being the distance between the notebook rings in the layout. That's right,
this is cosmetic only. */
function setHeight() {
	var contentDiv = document.getElementById('content');
	var sidebarDiv = document.getElementById('sidebar');
	var contentHeight = contentDiv.offsetHeight;
	var sidebarHeight = sidebarDiv.offsetHeight;
	var overHeight;
	if (sidebarHeight > contentHeight) {
		overHeight = sidebarHeight % 30;
		contentDiv.style.height = ((sidebarHeight - overHeight + 4) + 'px');
	} else {
		overHeight = contentHeight % 30;
		contentDiv.style.height = ((contentHeight - overHeight + 4) + 'px');
	}
	
}