function inputTip () {
  $(document).ready(function(){
    $("input[type=text]").click(function(){
      alert($(this).val().trim());
      if ($(this).val().trim() == 'Seu nome'){
        $(this).val('');
      }
    });
    $("input[type=text][rel=tip]").blur(function(){
      if ($(this).val().trim() == '') {
        $(this).val('Seu nome');
      }
    });
  });
}

function formResponder (commentId){
  $("input#comment_parent").val(commentId); 
}

function formNovoComentario(){
  $("input#comment_parent").val('0'); 
}