// enlarge ihg-gallery thumbnails on click 
$('.ihg_gallery li a').click(function() {
	fotourl = $(this).attr("href");
	$('body').append('<div id="ihg_gallery_layer"><img src="'+fotourl+'" /><a href="#" class="close_gallery">Sluiten</a></div>');
	$('#ihg_gallery_layer').fadeIn('100');
	$('body').click(function(){
		$('#ihg_gallery_layer').fadeOut('100').remove();
	});
	return false
});

// show children of particulieren page if there are no current pages
// $('#doormat nav ul > li:not(:contains(.current_page_ancestor))').parent().addClass('show-default-menu');
$('#doormat nav ul > li:not(:contains(.current_page_item))').parent().addClass('show-default-menu');
$('#doormat nav li.current_page_ancestor').parent().removeClass('show-default-menu');
