$(document).ready(function() {
	
	$('.locationProv table').hide();
	$('.provincie').toggle(
		function() {
			$('img' ,this).attr('src', '/images/open.png');
			$(this).next('table').slideDown('normal');
		},
		function () {
			$('img' ,this).attr('src', '/images/closed.png');
			$(this).next('table').slideUp('normal');
		}
	);	

});