// JavaScript Document
$(function(){
	$(".templateAreaLocationItem").find('a').click(function() { 
		if ($(this).attr("id") != "mail") {
			$(this).removeAttr("href");
			$.post("/setDepartment.php",{dep : $(this).attr('rev')},function(data) {
				location.href = "/vestigingen-detail.html";											 
			});
		}
	});
});
