$(document).ready(function() {
   $("#indexedsearchinput").each(function(){
   var wert = $(this).val();
   $(this)
     .focus(function(){
     if ($(this).val() == wert) {
        $(this).val("");
     }
     })
   .blur(function(){
    if ($(this).val() == "") {
       $(this).val(wert);
    }
    });
   });
});

