
$(document).ready(function() {
	$('#input_huisnummer').bind('blur', function() {
		if($('#landcode').val() == 'undefined' || $('#landcode').val() == 'NL') {
			checkPostcode();
		}
	});
	$('#input_postcode').bind('blur', function() {
		if($('#landcode').val() == 'undefined' || $('#landcode').val() == 'NL') {
			checkPostcode();
		}
	});
	
	$('#rekening').bind('blur', function() {
		checkAccountNumber();
	});
	$('#rekening_bank').bind('blur', function() {
		if($(this).attr("checked")) {
			checkAccountNumber();
		}
	});
	$('#rekening_giro').bind('blur', function() {
		if($(this).attr("checked")) {
			checkAccountNumber();
		}
	});
	
	$(".digits-only").keypress(function (e) { 
		//if the letter is not digit then display error and don't type anything
		if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)) {
			//display error message
			//$("#errmsg").html("Digits Only").show().fadeOut("slow"); 
	    	return false;
		}	
	});
});
