$(document).ready(function() {
	$('ul#kunstenaars li').mouseover(function() {
		$('div.image').hide();
		$(this).find('div.image').show();
	});
});
