$(document).ready(function() {
	function matchHeight() {
		var matchHeight= $("#side").height() - 29;
		var currHeight = $(".mainContent").height()
		if(currHeight<matchHeight){
			$(".mainContent").css({height:matchHeight});
		}
	 }

	 matchHeight();
});