/* -------------------------------------------------------------------

	Kunstmaan - LIJN
	Toerisme Vlaanderen
	
	This JavaScript file collects all general functions used
	throughout the site, as well as some smaller specific
	functions.

------------------------------------------------------------------- */

$(document).ready(function(){
// display subnav @ share
	$("ul.comlinksnav li").hover(function() {
		$(this).addClass("hover");	
	}, function() {
		$(this).removeClass("hover");
	});
// open and close subnav share	
	$("li > a.share").click(function(event){
		event.preventDefault();
		$(this).parent().children("ul.subnav").css("display","block");
		});
	$("li > ul.subnav > li > a.close").click(function(event){
		event.preventDefault();
		$(this).parent().parent().parent().children("ul.subnav").css("display","none");
		});
});



