$(document).ready(
	function()
	{
		$('#groepen-list div').hover(
			function()
			{
				var groep = $(this).attr('id');
				$('.overview-groep').hide();
				$('#' + groep + '-overview').show();
			}
		);
	}
);
