$(document).ready(function() {
  var sidebarHeight=$("#sidebar").height();
  $(".narrowcolumn").css("min-height",sidebarHeight);
  
  $("#sidebar ul li ul li a").hover(
    function() {$(this).stop().animate({paddingLeft:"0.3em"},70);},
    function() {$(this).stop().animate({paddingLeft:"0"},70);}
  );
  
  $("h2 a").hover(
    function() {$(this).stop().animate({color:"#04a0ee"},300);},
    function() {$(this).stop().animate({color:"#FFF"},300);}
  );
});