$(function(){
	$('#confirmSend').dialog({
	    autoOpen: false,
	    width: 400,
	    modal: true,
	    resizable: false,
	    buttons: {
	        "Versenden": function() {
	            document.formular1.submit();
	        },
	        "Abbrechen": function() {
	            $(this).dialog("close");
	        }
	    }
	});

	$('form#formular1').submit(function(){
	    $('#confirmSend').dialog('open');
	    return false;
	});

    $('#ummeldedatum').datepicker({showOn: 'both', buttonImageOnly: true, buttonImage: template_path+'/media/calendar.png'});
});

function clear_form_elements(ele) {
    $(ele).find(':input').each(function() {
        switch(this.type) {
            case 'password':
            case 'select-multiple':
            case 'select-one':
            case 'text':
            case 'textarea':
                $(this).val('');
                break;
            case 'checkbox':
            case 'radio':
                this.checked = false;
        }
    });

}
