
jQuery(document).ready(function() {
	// fading navigation
	// set opacity to nill on page load
	$("ul#nav 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');
	});
	// set opacity to nill on page load
	$("ul.sub-presentatie span").css("opacity","0");
	// on mouse over
	$("ul.sub-presentatie 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');
	});
	// set opacity to nill on page load
	$("ul.sub-kaart span").css("opacity","0");
	// on mouse over
	$("ul.sub-kaart 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');
	});
	// set opacity to nill on page load
	$("ul.sub-contact span").css("opacity","0");
	// on mouse over
	$("ul.sub-contact 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');
	});
});