$(document).ready(function(){
	
	$("form#lidmaatschap").hide();
	
	$("form#cursuseh").hide();
	
	$("form#cursusehaankinderen").hide();

	// When the input value changes
	$("[name='aanmelden']").change(function() {

		// If the value is equal to the string 'lidmaatschap', show this form
		if ($(this).val() == "lidmaatschap") {
			$("form#lidmaatschap").show();
			$("form#cursuseh").hide();
			$("form#cursusehaankinderen").hide();
		}
		
		// Else if the value is equal to the string 'cursuseh', show this form
		else if ($(this).val() == "cursuseh") {
			$("form#lidmaatschap").hide();
			$("form#cursuseh").show();
			$("form#cursusehaankinderen").hide();
		}
		
		// Else if the value is equal to the string cursusehaankinderen, show this form
		else if ($(this).val() == "cursusehaankinderen") {
			$("form#lidmaatschap").hide();
			$("form#cursuseh").hide();
			$("form#cursusehaankinderen").show();
		}
		
		// Else if it does not contain any of the values above, hide the forms
		else {
			$("form#lidmaatschap").hide();
			$("form#cursuseh").hide();
			$("form#cursusehaankinderen").hide();
		}
		
	});

});
