$(function() {
  var sld_default = "Ihre Wunsch-Domain";

  $("form#order_domain_check").
    submit(function(e) {
      $("input[name=sld]").focus();
    }).
    find("input[name=sld]").
      focus(function(e) {
        if ($(this).attr("value") == sld_default) {
          $(this).attr("value", "");
        }
      }).
      blur(function(e) {
        if ($(this).attr("value") == "") {
          $(this).attr("value", sld_default);
        }
      }).
      blur();

});

