$(document).ready(function() {
		//Leftside Height Fix
		var a=$('.ContentContainer').height();
		var height = a + 2;
		$('#catmenu').css('height',height);
		//Form + checks start
		formcheck();
		$('.requiredlabel').append('<span class="requiredstar">*</span>');
		$('.requiredfield').change(function() { formcheck(); });
		$('.courseform tbody tr td input').keyup(function(k) {
			formcheck();
		});
		$('#zoek').click(function(){
			var zip=$('#zip').val();
			var country=$('#country').val();
			centerGoogleMap(zip,country);
		});
		//Form + checks end
});

function formcheck(){
	var thijs=0;
	$('.requiredfield').each(function() {
		var a= $(this).val();
		if(a!=''){
		}else{
			thijs++;
		}
	});
	$('.requiredfield').each(function() {
		var a= $(this).val();
		if(a!=''){
		}else{
			thijs++;
		}
	});
	$('.courseform select').each(function() {
		var a= $(this).val();
		if(a!=''){
		}else{
			thijs++;
		}
	});
	if(thijs==0){
		$('.send').attr("disabled",false);
	}else{
		$('.send').attr("disabled","disabled");
	}
}

function toggleContactOther(value){
	$('.hoecontactandere').val('');
	if(value=='Andere:' || value=='Autre:'){
		$('.hoecontactandere').show();
	}else{
		$('.hoecontactandere').hide();
	}
}
