    $(document).ready(function(){
	
		$('a.show').hover(function () {
		  	$('#header-menu-uitklap').show();
		}, function () {
			$('#header-menu-uitklap').show();
		});	
		
		$('a.showshop').hover(function () {
		  	$('#header-menu-shopuitklap').show();
		}, function () {
			$('#header-menu-shopuitklap').show();
		});	
		

		$('a.hide').hover(function () {
		  	$('#header-menu-uitklap').hide();
			$('#header-menu-shopuitklap').hide();
		}, function () {
			$('#header-menu-uitklap').hide();
			$('#header-menu-shopuitklap').hide();
		});	
		
		$('#header-menu-uitklap').hover(function () {
		  	$('#header-menu-uitklap').show();
		}, function () {
			$('#header-menu-uitklap').hide();
			$('#header-menu-shopuitklap').hide();
		});
		
		$('#header-menu').hover(function () {
		  	$('#header-menu-uitklap').hide();
			$('#header-menu-shopuitklap').hide();
		}, function () {
			$('#header-menu-uitklap').hide();
			$('#header-menu-shopuitklap').hide();
		});	
	
	});