
jQuery.extend(jQuery.easing,
{
	easeNone: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	}
});
	

$(document).ready(function()
{
	if ($("body").hasClass("fade_in")) {
		$("#titel").css({visibility: "visible"});
		$(".anythingSlider.kader .wrapper ul li, .hoofdmenu, #footer, .anythingSlider .arrow").css({opacity: 0, visibility: "visible"});
		
		$(".hoofdmenu").animate({opacity: 0}, 2000, function () {
		
			$(".hoofdmenu").animate({opacity: 0.8}, 700, "easeNone", function()
			{
				$(".hoofdmenu").css({opacity: null});
			});
		});
	}
});
