// JavaScript Document
$(function(){
	$(".vestiging").find('a').click(function() { 
		$.post("/setDepartment.php",{dep : $(this).attr('rev')},function(data) {
			location.href = "/route.html";											 
		});
	});
});