// resize our content to match sidebar
if ($('div.match_graywidebox_height_to_sidebar').size() > 0) {
	// see if the total height of plaincontent is shorter than rightcolumn
	if (document.getElementById('plaincontent').offsetHeight < document.getElementById('rightcolumn').offsetHeight) {
		// increse the height of graywidebox to match the sidebar
		newHeight = document.getElementById('rightcolumn').offsetHeight - 328;
		$('div.graywidebox').css("height",newHeight+"px");
	}
}
if ($('div.match_features_height_to_sidebar').size() > 0) {
	// see if the total height of plaincontent is shorter than rightcolumn
	if (document.getElementById('plaincontent').offsetHeight < document.getElementById('rightcolumn').offsetHeight) {
		// increse the height of graywidebox to match the sidebar
		newHeight = document.getElementById('rightcolumn').offsetHeight - 65;
		$('div.features').css("height",newHeight+"px");
	}
}