$(document).ready(function() {
  var a = $("#side_navigation").height();
  var b = $("#content").height();
  var c = $("#sidebar").height();
  var max = Math.max(a,b,c);
  if (max > a) $("#side_navigation").height(max);
  if (max > b) $("#content").height(max);
  if (max > c) $("#sidebar").height(max);
});
