<!--
        $(function() {
			$("#slider").sudoSlider({
				fade: true,
				auto: true,
				continuous: true,
				controlsShow: false,
				pause: 3000			
			});

			//$(".inhoud").load("home.asp");//af sedert 2012-02-10
			//$(".music").load("music.asp");
			
			$("a").live("click",function(){
				var sClass = $(this).attr("class") + "";
				var href = $(this).attr("href") + "";
				if(href.substr(0,7) + "" == "http://") {
					return true;
				} else {
					if(sClass + "" !== "sub") {
						$(".bar ul li").removeClass("actief");
						$(this).parents("li").addClass("actief");
						loadContent(href + ".asp");
						$(".bar ul li a[href='" + href + "']").parents("li").addClass("actief");
					} else {
						$(".links ul li").removeClass("cur");
						$(this).parents("li").addClass("cur");
						$(".groep").hide();
						$("." + href).show();					
						//$(".blackband").height($(document).height());
					}
				}
				return false;
			});
			
			function loadContent(wat) {
				$(window).resize();
				$("#loader").html("");
				$("#loader").load(wat,function(){
					//alert($(".inhoud").height());
					$(".inhoud").html($(this).html());
					//alert($(".inhoud").height());
					//$(".blackband").height($(document).height());
					$("#loader *").remove();
				});
				
				return false;
			}
			
			// screen res checker (< 1024)
			var w = $(document).width();
			var h = $(document).height();
			
			if(w < 1024) {
				$(".blackband").css({left: "50px"});
				$(".header").css({left: "350px", top: "50px"});
				$(".inhoud").css({left: "350px", top: "250px"});
				$(".bar").css({top: "150px"});
				$(".bar ul").css({marginLeft: "335px"});
				$(".bar ul li a").css({padding: "0px 10px"});
				$(".h200").height("30px");
			}
			
			//setInterval(function() {
			//	$(".blackband").height($(document).height());
			//},5000);

			$(window).resize(function() {
//				alert($("body").height());									  
//				alert($(".inhoud").height());
				/*
				$(".wrapper").height("500px").css("border","1px solid red");
				$(".inhoud").height("200px").css("border","1px solid red");
				$("#loader").height("200px").css("border","1px solid red");
				*/
				//$(".blackband").height($(document).height());
				$("#footer").css("bottom","10px");
				//alert("resize")									  
			});


        });
-->		
