$(document).ready(function(){
  $('#btn_buscador').css("cursor", "pointer");
  $('#titulo').focus(function(){
      $(this).val("");
  });
  $('#btn_buscador').click(function(){
    $("#busqueda").submit();
  });
});