function mouse_in(id) {
  $("#text_"+id).addClass("border_in");
}

function mouse_out(id) {
  $("#text_"+id).removeClass("border_in");
}

