init = function () {
  clearSearchField();
  stripe();
}
clearSearchField = function () {
  $("#s").focus(function(){
      if(this.value == this.defaultValue) {
          this.value=' ';
      }
  });
}
stripe = function () {
 $(".listing_table > tbody > tr:even").addClass("genap");
}

$(document).ready(init);
