$(document).ready(function() {
	// Google maps
	autoFill('postcode-google-1', '1000');
	autoFill('postcode-google-2', 'AA');
	
	// 9292OV
	autoFill('postcode-9292ov-1', '1000');
	autoFill('postcode-9292ov-2', 'AA');
});

function toggleVestiging(naam) {
	var vestiging = '#vestiging_' + naam;
	var arrow = '#arrow_' + naam;
	
	if ($(vestiging).is(':hidden')) {
		$(vestiging).show();
		$(arrow).removeClass("vestiging-arrow-inklap").addClass("vestiging-arrow-uitklap");
	} else {
		$(vestiging).hide();
		$(arrow).removeClass("vestiging-arrow-uitklap").addClass("vestiging-arrow-inklap");
	}
}

function validateRouteplanner(form, field1, field2) {
	var route_form = '#' + form;
	
	if ($('#' + field1).val() == '' || $('#' + field2).val() == '') {
		alert('Er is nog geen (correcte) postcode ingevuld');
		
		return;
	}
	
	// url ophalen
	var url = location.href;
	
	// action invoegen en submitten
	$(route_form).attr('action', url + $(route_form).attr('id') + '/').submit();
}