$(document).ready(function() {

        var activeInputValue = "";

        $("body").find("input").each(function(){
        $(this).focus(function(){
            if($(this).attr("id") != "lieferantensuche_lieferantennameinput" && $(this).attr("id") != "lieferantensuche_lieferantenplzinput" && $(this).attr("id") != "lieferantensuche_lieferantenwareinput" ){
            activeInputValue = $(this).val();
            $(this).val("");
            }
        });
        $(this).blur(function(){
          if($(this).attr("id") != "lieferantensuche_lieferantennameinput" && $(this).attr("id") != "lieferantensuche_lieferantenplzinput" && $(this).attr("id") != "lieferantensuche_lieferantenwareinput" ){
            if($(this).val() == "")$(this).val(activeInputValue);
            activeInputValue = "";
            }
        });
        });
        $("body").find("textarea").each(function(){
        $(this).focus(function(){
            activeInputValue = $(this).val();
            $(this).val("");
        });
        $(this).blur(function(){
            if($(this).val() == "")$(this).val(activeInputValue);
            activeInputValue = "";
        });
        });
});
