// Encodé en UTF-8


$(document).ready(function() {
	// tous les liens externes s'ouvrent dans une nouvelle fenêtre et ont la classe "ext"
	$("#nav-11 a[@href^=http]").attr("target", "_blank").addClass("ext");
});

$(document).ready(function() {

	// Mise en place de la fançy box sur certains liens
	$("a img#planvenue").parent().fancybox({ 
		'hideOnContentClick': true,
		'overlayShow': true,
		'overlayOpacity': 0.6
	});
	
	// Nav Javascript
	//$("#header").css({ marginBottom: "0" });
	//$("#nav-0 li ul").wrap("<div></div>");
	$("#nav-0 li ul").hide(); 
	$("#nav-0 li").hover(
        function () {
		$(this).children("ul").fadeIn("fast");
		$(this).children("ul").prev().css({ borderBottom:"4px solid #B4D6F0", outline:"none" });
		/* commented out by Koen
		$(this).children("ul").prev().click(function(event){event.preventDefault();});
		*/
        },function(){
		$(this).children("ul").fadeOut("fast");
		if ($(this).attr("class") == "active") { color = "#B4D6F0"; } else { color = "#2b3279"; };
		$(this).children("ul").prev().css({ borderBottom:"4px solid "+color, outline:"none" });
		/* commented out by Koen
		$(this).children("ul").prev().click(function(event){event.preventDefault();});
		*/
	});
	$("#nav-0 li li").hover(
        function () {
		$(this).children("ul").fadeIn("fast");
		$(this).children("ul").prev().css({ borderBottom:"4px solid #B4D6F0", outline:"none" });
		/* commented out by Koen
		$(this).children("ul").prev().click(function(event){event.preventDefault();});
		*/
        },function(){
		$(this).children("ul").fadeOut("fast");
		if ($(this).attr("class") == "active") { color = "#B4D6F0"; } else { color = "#2b3279"; };
		$(this).children("ul").prev().css({ borderBottom:"0px solid "+color, outline:"none" });
		/* commented out by Koen
		$(this).children("ul").prev().click(function(event){event.preventDefault();});
		*/
	});

});
