<!-- 
    $(function(){
    	scriptName = scriptName.replace(".php",".html");
		$("a[href='" + scriptName + "']").parents("li").addClass("actief");
		var h = $(document).height();
		var w = $(document).width();
		var hInhoud = $(".inhoud").height();

		$(".wrapper").height(h + "px");
		$(".footer").width(w + "px");


		if($("#slider li").length > 1) {
			$("#slider").sudoSlider({
				auto: true,
				vertical: true,
				controlsShow: true,
				pause:4000
			});
		}
		
		$("a.lightbox").lightBox(); 
		

		if($("#videoload").length !== 0) {
			$("#videoload").load("movieload.php?w=352&h=170",function(){
//				alert($(this).css("z-index"));																	  
//				$(".movierubriek").click(function(){
			});	
		}

		$(".contact").submit(function(){
			var ok = true;
			var strFouten = "";
			$.each($(".verplicht"),function(){
				if($(this).val() + "" == "") {
					ok = false;
					if($(this).attr("fout") !== undefined) strFouten += $(this).attr("fout") + "\n";
					$(this).css("border","1px solid red");	
				} else {
					$(this).css("border","1px solid silver");	
				}											
			});
			if(!ok) alert(strFouten);	
			return ok;
		});
		
		//$(".inhoud").css("opacity","0.9");
		$(".news-more, .home-news-movie .morenews, .home-news-more .morenews").css("opacity","0.85");
		//$(".menu, .logo").hide();		
		
		$(".sub").css("z-index","1000");
		
		$(".subs > div").hide();
		$(".subs > div").eq(0).slideDown();
		
		$(".sub a").click(function(){
			//alert($(this).attr("href"));								   
			$(".subs > div").hide();
			$(".subs > div[id='" + $(this).attr("href") + "']").slideDown();
			$(".sub li.actief").removeClass("actief");
			$(this).parents("li").addClass("actief");
			return false;
		});
		
		
    });
-->
