(function() {
  jQuery(function($) {
    $("#search").focus(function() {
      if ($(this).val() === "search") {
        return $(this).val("");
      }
    });
    return $("#search").blur(function() {
      if ($(this).val() === "") {
        return $(this).val("search");
      }
    });
  });
}).call(this);

