$(document).ready(function(){
  $("#hafassearch").click(function() {
    
    $("FORM#pinhafas").submit();
    return false;
  });

  $("#" + fromId +", #" + toId).focusin(function() {
    if ($(this).val() == konStationStop) {
      $(this).val("");
      }
  });

  $("#" + fromId +", #" + toId).focusout(function() {
    if ($(this).val() == "") {
      $(this).val(konStationStop);
    }
  });
});
