// jQuery show-hide functions voor footer adres


$(document).ready(function() {
 
 	$('.bezoek').hide();
	
	$('.bezoeklink').click(function() {
		$('p.bezoek').show();
		$('p.post').hide();
		return false;
		
	});
	
	$('.postlink').click(function() {
		$('p.bezoek').hide();						 
		$('p.post').show();
		return false;
	});
	
	
		
});

