$(document).ready(function(){

	$('#appointmentForm').ajaxForm({
		target:  '#modalSuccess div',
		beforeSubmit: function() {
			if ($('input[name="firstname"]').val() == 'Vorname' && $('input[name="lastname"]').val() == 'Nachname'
			&& $('input[name="email"]').val() == 'E-Mail' && $('input[name="telephone"]').val() == 'Telefon') {
				alert('Sie haben keine Felder ausgefüllt');
				return false;
			}
		},
		success: function() {
            $('#modalSuccess').jqmShow();
        }
    });

	$('#modalSuccess').jqm({modal: true, toTop: true});

	$('input[type="text"].form_input_text_padding').focus(function() {
         if (this.value == this.defaultValue){
             this.value = '';
         }
         if(this.value != this.defaultValue){
             this.select();
         }
     });

     $('input[type="text"].form_input_text_padding').blur(function() {
         if ($.trim(this.value) == ''){
             this.value = (this.defaultValue ? this.defaultValue : '');
         }
     });
});

