/**********************************************************************************************

  Title: Suler.org
  Author: Paweł Ludwiczak
  Date: October 2010

***********************************************************************************************/

$(document).ready(function() {
  $("#footer aside li:last").addClass("last-child");
  
  var h1 = $("#footer .about").height();
  var h2 = $("#footer .categories").height();
  if(h1 > h2) {
    $("#footer .categories").height(h1);
  } else {
    $("#footer .about").height(h2);
  }
  
});

