
//Match Side Nav Height to mainBlock Height since side nav floats if MainBlock is smaller than sideNav
$(window).load(function () { 
	var h = $("#leftMenu").height();
	
	if ($("#mainBlock").height() < h)
	{
		$("#pageMiddle").css("height", h);
		$("#mainBlock").css("height", h);
	}
});