jQuery(document).ready(function() {
   
    jQuery(".clr").focus(function() {
        clr(this, "fultextové hledání");
    }).blur(function() {
        clr(this, "fultextové hledání");
    });
    
    function clr(obj, txt) {
        if(obj.value == txt) {
            obj.value = '';
        } else if(obj.value == '') {
            obj.value = txt;
        }
    }
   
    
});



