$(function(){
  $("a#reply").click(function(){
    window.location = $(this).attr("href");
    $("#comment-form form .text:first").focus();
    return false;
  });
  $("input.text, textarea.textarea").focus(function(){
    $(this).addClass("active");
  })
  $("input.text, textarea.textarea").blur(function(){
    $(".active").removeClass("active");
  })
  if( window.location.hash == "#reply" ){
    $("#comment-form form .text:first").focus();
  }
})
