jQuery(document).ready(function() {
	// fading navigation
	// set opacity to nill on page load
	$("ul#nav span").css("opacity","0");
	$("ul#nav-fr span").css("opacity","0");
	// on mouse over
	$("ul#nav span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'normal');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
	$("ul#nav-fr span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'normal');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
	// subnav
	$(".bloementorens").click(function () {
		$("#submenu").slideToggle("slow");
	});
	$(".colonnes").click(function () {
		$("#submenu").slideToggle("slow");
	});
	// fading subnavigation
	// set opacity to nill on page load
	$("ul#subnav span").css("opacity","0");
	$("ul#subnav-fr span").css("opacity","0");
	// on mouse over
	$("ul#subnav span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'normal');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
	$("ul#subnav-fr span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'normal');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
	//
});