//onready functionality
$(function(){    
    $('#workshop input, #workshop textarea').focus(function() {
        if($(this).val() == 'Vorname' || $(this).val() == 'Nachname' || $(this).val() == 'Vorname' || $(this).val() == 'Straße/ Hausnummer' || $(this).val() == 'PLZ/ Ort' || $(this).val() == 'E-Mail Adresse' || $(this).val() == 'Anzahl der teilnehmenden Personen' || $(this).val() == 'Individuelle Bemerkung') {
            $(this).val("");
        }
        
    });
});

