/* Author:

*/




$(document).ready(function(){

	$("#construction").dialog({
		title:"Im Aufbau"
	});
	
	$("#impressum").dialog({
		title:"Impressum",
		autoOpen: false,
		width: 600
	});
	
	$("#openImpressum").on("click", function(){
		$("#construction").dialog("close");
		$("#impressum").dialog("open");
		return false;
	});
	
	
	
	
	$("#submitButton").on("click", function(){
		var $Inputfelder = $("#anmeldeformular").find(".formInput");
		
		var isAllowedToSubmit = true;
		
		$Inputfelder.each(function(){
			if ($(this).val() === "") {
				isAllowedToSubmit = false;
				return false;
			}
		});
		
		return isAllowedToSubmit;
		
	});
	
	
	
});



