$(document).ready(function(){

	var sidebarHeight = document.getElementById("Sidebar").offsetHeight;
	var contentHeight = document.getElementById("MainContent").offsetHeight;

	if (sidebarHeight < contentHeight ) {
		$("#Sidebar").height(contentHeight);
	}

/* 
	if (contentHeight < sidebarHeight) {
		$("#MainContent").height(sidebarHeight);
	}
*/




});

