$(document).ready(function() {
	  // Add class for fittext
	  $("#theme p").addClass("fittext");
	  $("#inschrijven p").addClass("fittext");
	  $("#f7041ef68").width("100%");
	  	  
	  // Stretch pattern
	  $(window).scroll(function() { 
        var docheight = $(document).height()
  	  	$("#pattern").height(docheight);
  	  }); 
	  
	  // Inschrijven hover
	  $("#inschrijven").hover(
  	    function () {
          $("#footer").animate({ opacity: "0.1" }, 200 );
          $("#main").animate({ opacity: "0.1" }, 200 );
          $("#share").animate({ opacity: "0.1" }, 200 );
          $("#menu").animate({ opacity: "0.1" }, 200 );
          $("#logo").animate({ marginLeft: "4%", marginTop: "35px" }, 200 );
  	    }, 
  	    function () {
          $("#footer").animate({ opacity: "1.0" }, 200 );
          $("#main").animate({ opacity: "0.95" }, 200 );
          $("#share").animate({ opacity: "0.95" }, 200 );
          $("#menu").animate({ opacity: "1.0" }, 200 );
          $("#logo").animate({ marginLeft: "0%", marginTop: "0px" }, 200 );
  	    }
  	  );
});
	
// Dropdown submenu NL
$(function() {
	  
	  $("ul#menu-main li").hover(function() {
	    $(this).find('ul.sub-menu')
		  .stop(true, true).delay(00).animate({ "opacity": "show", "left":"0%" }, 300 );
		  //$("#main").stop(true, true).animate({ "marginTop":"20px" }, 300 ); 
		}, function() {
		$(this).find('ul.sub-menu')
		  .stop(true, true).delay(1200).animate({ "opacity": "hide", "left":"100%" }, 600 );
		  //$("#main").stop(true, true).delay(700).animate({ "marginTop":"0px" }, 600 ); 
	  });
	  
	  $("ul#menu-main li.current-menu-ancestor").hover(function() {
	    $(this).find('ul.sub-menu')
		  .stop(true, true).delay(00).animate({ "opacity": "show", "left":"0%" }, 300 );
		  //$("#main").stop(true, true).animate({ "marginTop":"20px" }, 300 ); 
		}, function() {
		$(this).find('ul.sub-menu')
		  .stop(true, true).delay(00).animate({ "opacity": "show", "left":"0%" }, 600 );
		  //$("#main").stop(true, true).delay(700).animate({ "marginTop":"0px" }, 600 ); 
	  });	

});
	
	// Dropdown submenu EN
$(function() {
	  
	  $("ul#menu-main-en li").hover(function() {
	    $(this).find('ul.sub-menu')
		  .stop(true, true).delay(00).animate({ "opacity": "show", "left":"0%" }, 300 );
		  //$("#main").stop(true, true).animate({ "marginTop":"20px" }, 300 ); 
		}, function() {
		$(this).find('ul.sub-menu')
		  .stop(true, true).delay(700).animate({ "opacity": "hide", "left":"100%" }, 600 );
		  //$("#main").stop(true, true).delay(700).animate({ "marginTop":"0px" }, 600 ); 
	  });	

});
