(function($) {
jQuery.fn.exists = function(){return this.length>0;}
$(document).ready(function () {
if ($("#search").exists()) {
  $("#search").click(function () { $(this).attr("value", ""); });

  $("#search").blur(function () {
    if ($(this).attr("value") == "") {
      $(this).attr("value", "quicksearch");
    }
  });

  $("input#search").quicksearch("table tbody tr");
}});
}(jQuery));
