$(document).ready(function() {
   $("#comment").focus(function() {
      if($(this).val() == "Leave a reply...") {
         $("#expandedcommentform").show();
         $(this).val("").addClass("expanded");
      }
   });
});
